optgroup
オプションを含み、 phpを使用して動的に生成される選択ボックスがあります。他のすべての「ALL」を選択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>
どうすればこれを機能させることができますか?