您需要动态构建主题。即我输入了一些我希望添加到主题的数据。
例如,如果我只是构建html,我可以编写以下内容:
<span style="color: #434343; font-family: 'Segoe UI REGULAR'; font-size: 12pt;">
<text id="supportDescription">Id is '[context.eventId]' .</text>
</span>
在打开html时,我会看到Id is 345
(345
是一个参数)
我没有在html中添加id
,而是想添加一个包含mailto
的{{1}}链接:
id
变电站也会在这里工作吗?主题将是<a href="mailto:name@gmail.com?subject=The%20 reply for evetId '[context.eventId]'">Send mail </a>
答案 0 :(得分:0)
当输入的值发生变化时,您可以使用jQuery事件处理程序将输入中输入的任何文本放入链接中。的 DEMO 强>
$('input#eventid'). on('change', function() {
var link = "mailto:name@gmail.com?subject=The%20reply%20for%20evetId%20" + $(this). val();
$('a#mailto').attr('href', link);
});