私は3つのラジオボタンを持っています
<div id="test">
<input type="radio" id="time1" name="radio" value="1" /><label for="time1">Test 1</label>
<input type="radio" id="time2" name="radio" value="2" /><label for="time2">Test 2</label>
<input type="radio" id="time3" name="radio" value="3" /><label for="time3">Test 3</label>
</div>
jqueryで
$("#test").buttonset();
その後、それらを無効にしたい(もちろん、無効化はif
ステートメントに配置されます)
$("#test input").attr("disabled", true); //or
$("#test input").prop("disabled", true);
ボタンはまだ有効になっています。