基本上,我有一个 jQuery 模式,它通过onClick
然后使用data
属性动态获取内容,我需要替换 a 中的文本<select></select>
以显示动态电子邮件地址。
这是HTML
<select name="email" class="span4">
<option id="holder" value="">Ticket Holder ('{ticket_holder}')</option>
<option id="purchaser" value="">Ticket Purchaser ('{ticket_purchaser}')</option>
</select>
这是我尝试使用的jQuery
$('select option:contains("{ticket_holder}")').text().replace("{ticket_holder}","Test");
未能处理。