3

我确信这确实有效,我正在使用最新的 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>
4

0 回答 0