gpt4 book ai didi

javascript - 根据所选选项禁用复选框(jquery)

转载 作者:行者123 更新时间:2023-11-28 00:19:29 27 4
gpt4 key购买 nike

我正在编写一个 jquery 代码,其目的是禁用/启用一组复选框。到目前为止我得到了:网页:

<select id="Units">
<option value="Marketing" > Marketing </option>
<option value="Finance" > Finance </option>
<option value="Operations" > Operations </option>
</select>
<input type="checkbox" class="enable" onclick="check();" value="1"> chbx1
<input type="checkbox" class="dissable" onclick="check();" value="2"> chbx2
<input type="checkbox" class="dissable" onclick="check();" value="3"> chbx3
<input type="checkbox" class="enable" onclick="check();" value="4"> chbx4

JS

$("#Units").on("change", function() {
if ($(this).val() !== "Finance") {
$(".dissable").attr("disabled", "disabled");

} else {
$(".dissable").removeAttr("disabled");
}
});

但它在页面加载时无法正常工作。仅在更改所选选项后,复选框才会使用react。如何改进这一点,以便在加载页面并使用适当的类启用/禁用复选框时捕获所选值?

最佳答案

$(".dissable").attr("disabled", "disabled");
$("#Units").on("change", function() {
if ($(this).val() !== "Finance") {

$(".dissable").attr("disabled", "disabled");
} else {
$(".dissable").removeAttr("disabled");
}
});

演示:http://jsfiddle.net/zgn2o40a/1/

关于javascript - 根据所选选项禁用复选框(jquery),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30165820/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com