我确信这确实有效,我正在使用最新的jquery-mobile 1.4构建一个phonegap应用程序,但是对于ios 7,我的多选本机不再有效。我只能选择一个选项。如果我添加data-role =“none”,那么它确实有效但我放弃了jquery移动主题。有没有人遇到过这个并且有一个修复。
<script>
$.getJSON(
"http://m.mysite.com/ajaxResponder.php?method=getContacts",
function(data) {
var items = "";
if (data.none != 'none') {
items +='<legend><span lang="en">Select Contacts</span></legend>'+
'<select name="contacts[]" multiple="multiple" data-native-menu="true">';
$.each(data.contacts, function(index, item) {
items += "<option value='" + item.email + "'>" + item.names + "</option>";
});
items += '</select>';
}
else {
items +='<span lang="en">Contacts will be displayed here. They can be created from the contacts menu</span>';
}
$("#contacts").html(items);
$("#contacts").trigger("create");
}
);
<script>
<div data-role="fieldcontain">
<div id="contacts"></div>
</div>