json を使用して設定された選択項目がありますが、jquery モバイル選択にはデフォルトで選択された値が表示されません。ドキュメントを読んだところ、次の設定が必要であると書かれていました。
$.mobile.selectmenu.prototype.options.hidePlaceholderMenuItems = false;
しかし、これを行う方法が本当にわかりません
json を使用して設定された選択項目がありますが、jquery モバイル選択にはデフォルトで選択された値が表示されません。ドキュメントを読んだところ、次の設定が必要であると書かれていました。
$.mobile.selectmenu.prototype.options.hidePlaceholderMenuItems = false;
しかし、これを行う方法が本当にわかりません
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/