我有一个简单的 html 选择,如下所示:
<select id="eventid">
<option value="a">a</option>
<option value="b">b</option>
</select>
我使用的脚本正在使用此代码,我必须在其中获取选择值。
<script id="template-upload" type="text/x-tmpl">
<tr class="template-upload fade">
{% for (var i=0, file; file=o.files[i]; i++) { %}
<td class="post"><label><input type="hidden" name="userid[]" value="$( "#eventid" ).val()" required></label></td>
我认为由于 x-tmpl 脚本头,它不起作用,但我必须使用它。如何在此 tmpl 脚本中获取选择值?
谢谢