gpt4 book ai didi

jquery - 如何选中除禁用复选框之外的所有复选框?

转载 作者:行者123 更新时间:2023-12-01 07:06:12 25 4
gpt4 key购买 nike

如果我单击checkAll,我想选中除禁用的复选框之外的所有复选框。

$("#checkAll").click(function () {
$(".projectlist input:checkbox").each(function () {
if($(this).is(':enabled')){
$('.projectlist input:checkbox').not(this).prop('checked', this.checked);
}
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div class="projectlist">
<input id="checkAll" type="checkbox"><br>
<input disabled type="checkbox"><br>
<input disabled type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
</div>

最佳答案

$("#checkAll").click(function() {

$('.projectlist input:checkbox:enabled').prop('checked', this.checked);


});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div class="projectlist">
<input id="checkAll" type="checkbox"><br>
<input disabled type="checkbox"><br>
<input disabled type="checkbox"><br>
<input type="checkbox"><br>
<input type="checkbox"><br>
</div>

  1. 使用:enabled()选择器

Description: Selects all elements that are enabled.

关于jquery - 如何选中除禁用复选框之外的所有复选框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44324371/

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