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 に答える