おそらく単純な問題があり、ページの初期化時にjqueryモバイルボタンを無効にしようとしています。次のようにします。
<body>
<section id="firstpage" data-role="page-content">
<header data-role="header">
<h1>Working with Buttons</h1>
</header>
<div data-role="content">
<p>This is a <button> element:</p>
<button id="btn1">button element</button>
</div>
</section>
<script>
$("#firstpage").live('pageinit', function (evt) {
$("#btn1").button("disable");
});
</script>
</body>
ページはすべての jquery モバイルの書式設定と動作で期待どおりに読み込まれますが、ボタンは有効なままです。何か案は?ここで欠けている非常に単純な詳細は何ですか?