我有一个包含选项的选择框,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>
我怎样才能使它工作?