jQuery Mobile 中是否不支持 Simpledialog2 选择菜单?
因为当我在 Simpledialog2 中使用选择菜单时,出现如下错误:“未捕获的类型错误:无法读取未定义的属性 'jQuery1910010748725151643157'”
如果我不使用选择菜单而不是它工作正常,那是多么奇怪。
我正在尝试没有如下选择菜单,它工作正常。
<div id="inlinecontent" style="display:none;">
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<label>My Label</label>
<input value="myval" type="text">My Value</input>
</fieldset>
<a rel='close' data-role='button' href='#'> Close </a>
</div>
</div>
现在我正在尝试使用选择菜单,我在控制台中收到未捕获的类型错误并且它不起作用:(
<div id="inlinecontent" style="display:none;">
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<select>
<option value="1">One</option>
<option value="2">Two</option>
</select>
</fieldset>
<a rel='close' data-role='button' href='#'> Close </a>
</div>
</div>
我的js代码如下,
$(self.el).find('#inlinecontent').simpledialog2({
mode: 'blank',
headerText: 'My header text',
headerClose: true,
blankContentAdopt: true,
blankContent : true
});
谁能帮我解决这个问题?
任何帮助表示赞赏。