ボタンが 2 つある jquerymobile ページがあります。1 つはすべてのチェックボックスをオンにし、もう 1 つはすべてのチェックボックスをオフにします。最初にクリックするcheck all
と機能しますが、チェックを外すと機能しなくなります。
これが私のコードです:
<div data-role="page" id="selecttest">
<div data-role="header">
<a href="#sc" data-icon="home">SSC</a>
<h1>...</h1>
</div><!-- /header -->
<div data-role="content">
<fieldset class="ui-grid-a">
<div class="ui-block-a"><button onclick="$('#selecttest input[type=checkbox]').attr('checked','checked').checkboxradio('refresh');" data-theme="b">check all</button></div>
<div class="ui-block-b"><button onclick="$('#selecttest input[type=checkbox]').removeAttr('checked').checkboxradio('refresh');" data-theme="b">uncheck all</button></div>
</fieldset>
<fieldset data-role="controlgroup">
<input type="checkbox" name="checkbox-v-2a" id="checkbox-v-2a">
<label for="checkbox-v-2a">One</label>
<input type="checkbox" name="checkbox-v-2b" id="checkbox-v-2b">
<label for="checkbox-v-2b">Two</label>
<input type="checkbox" name="checkbox-v-2c" id="checkbox-v-2c">
<label for="checkbox-v-2c">Three</label>
</fieldset>
</div>
</div><!-- /page -->
jQuerymobile 1.3でjQuery 1.9.1を使用しています
私はすでにJQuery Mobileですべてのチェックボックスを選択または選択解除する方法を見てきましたか? しかし、それは私を助けていません。