我有一个包含选项和一个选择框optgroup
正在使用php.Now动态生成的,当我选择“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>
我怎样才能让这方面的工作?