0

我有一个使用 json 填充的选择项,但 jquery 移动选择不显示默认选择值。我已经阅读了文档,他们说需要设置以下内容:

$.mobile.selectmenu.prototype.options.hidePlaceholderMenuItems = false;

但我真的不知道该怎么做

4

1 回答 1

1

您需要在初始化 jQuery Mobile 之前在 mobileinit 事件中设置它,如下所示:

<head>
    <title>jQM Complex Demo</title>
    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
    <script>
        $(document).on("mobileinit", function () {
            $.mobile.selectmenu.prototype.options.hidePlaceholderMenuItems = true;
        });        
    </script>
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>    
</head>

示例:http: //jsfiddle.net/Gajotres/VmsRg/

于 2013-02-02T21:11:59.407 回答