私はphpを使用して動的に生成されるオプションとoptgroup
を含む選択ボックスを持っています。今、他のすべてのoptgroup
をすべて選択すると、オプションが無効になり、オプションを選択したときに「ALL」以外の「ALL」オプションは無効にする必要があります
<select name="select1" id ="select1" onchange="handleSelect()">
<option value ="-1">ALL</option>
<optgroup label="CARS">
<option value="ford">FORD</option>
<option value="Nissan">Nissan</option>
</optgroup>
</select>
<script>
function handleSelect() {
var selectVal = $("#select1:selected").text();
if (selectVal == "ALL") {
// cannot disable all the options in select box
$("#select1 option").attr("disabled", "disabled");
}
else {
$("#select1 option[value='-1']").attr('disabled', 'disabled');
$("#select1 option").attr('disabled', '');
}
}
</script>
これをどのように機能させることができますか?
これは奇妙なことですが、要件を満たすコードを次に示します。
$('select').on('change', function() {
if (this.value == '-1') {
$('optgroup option').prop('disabled', true);
} else {
$('optgroup option').prop('disabled', false);
}
});
次のコードを使用できます。次の3つの選択ボックスがあるとしましょう。
<select class="sel_box" id="sel_1" onchange="disable_sel(this.value);" ></select>
<select class="sel_box" id="sel_2" onchange="disable_sel(this.value);" ></select>
<select class="sel_box" id="sel_3" onchange="disable_sel(this.value);" ></select>
そして関数では 'opt'が引数になり、次を使用します
$('.sel_box option[value="'+opt+'"]').attr("disabled", true);
ターゲットとするHTMLのバージョンに応じて、disabled属性の構文に2つのバリエーションを使用できます。
HTML4: <option value="spider" disabled>Spider</option>
XHTML: <option value="spider" disabled="disabled">Spider</option>