請看下面的html代碼:
<select id="pa_size">
<option value="32cm">32 cm</option>
<option value="52cm">52 cm</option>
</select>
<input type="checkbox" class="todisable" value="1"> chbx1
<input type="checkbox" class="todisable" value="2"> chbx2
<input type="checkbox" class="todisable" value="3"> chbx3
,另請參閱下面的JavaScript代碼:
$("#pa_size").on('change', function() {
if ($(this).val() == "52cm") {
$(".todisable").attr("disabled", "disabled");
} else {
$(".todisable").removeAttr("disabled");
}
});
如果你想測試運行在小提琴點擊here:
份額完整的HTML –
請更新您的問題,並充分HTML模板 –