jquery mobile を使用して一連のチェックボックスをプログラムでチェックできません。次のコードがあります。
<div data-role="fieldcontain" id="div_radio" class="radiogroup">
<fieldset data-role="controlgroup">
<input type="radio" name="radio-pieces" id="radio-choice-1" value="3" checked="checked" />
<label for="radio-choice-1">1 to 3</label>
<input type="radio" name="radio-pieces" id="radio-choice-2" value="5" />
<label for="radio-choice-2">4 to 5</label>
<input type="radio" name="radio-pieces" id="radio-choice-3" value="6" />
<label for="radio-choice-3">over 5</label>
</fieldset>
</div>
私が行う場合:$("input[type='radio']:last").attr("checked",true).checkboxradio("refresh");
すべてが完璧に機能しますが、この作業はまったく機能しません:
$("input[type='radio']:first").attr("checked",true).checkboxradio("refresh");
$("input[type='radio']:eq(0)").attr("checked",true).checkboxradio("refresh");
$("input[type='radio']:eq(1)").attr("checked",true).checkboxradio("refresh");
$("input[type='radio']:eq(2)").attr("checked",true).checkboxradio("refresh");
これらの要素を適切に操作するにはどうすればよいですか? すべてのチェックボックスの選択を解除しても問題なく動作します。
$("input[type='radio']").attr("checked",false).checkboxradio("refresh");
チェックボックスが機能しているのは最後のチェックボックスだけのようです。