嘿伙计们,我正在尝试使用 jquery mobile 来构建应用程序。还将 underscore.js 用于一些模板功能。我试图弄清楚为什么表单不采用 jquery mobile 附带的 css 规则。我认为这与我的表单位于用于使用 underscore.js 的脚本标记内这一事实有关,我希望有人能阐明这个问题。
<script type="text/html" id='usageList'>
<form method="post" action="parse/final_template.html">
<input type="text" name="Name" value="some text" data-mini="true" />
<select name="Location">
<% _.each(deals,function(item,key,list){ %>
<% var f = item.Name; %><!-- create more variables -->
<option value="<%= item.name %>"> <%= item.name %> </option>
<% }); %>
</select>
</form>
</script>