gpt4 book ai didi

jquery - 使用 Jquery 选择列表中的所有复选框

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

这是我正在使用的 HTML/jQuery 的示例/示例。

$(function() {
$("#check_all_uw").change(function() {
var checkboxes_uw = $(this).closest(".China-uw-class").find(":checkbox");
if ($(this).prop("checked")) {
checkboxes_uw.prop("checked", true);
} else {
checkboxes_uw.prop("checked", false);
}
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="China-uw" class="tabcontent-uw" style="display: block;">
<h3 id="china-h3" class="uw-h3" style="font-weight:lighter;">China</h3>
<div id="China-ul" class="China-uw-class">
<div><label><input type="checkbox" class="uw-checkbox">Select All</label></div>
<div><label><input type="checkbox" class="uw-checkbox">Zhang Yi</label></div>
<div><label><input type="checkbox" class="uw-checkbox">Ken Yan</label></div>
</div>
</div>

最佳答案

这里固定的代码是is()

$(function() {
$("#check_all_uw").change(function() {
$(".uw-checkbox:checkbox")
.not(this)
.prop("checked", $(this).is(":checked"));
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="China-uw" class="tabcontent-uw" style="display: block;">
<h3 id="china-h3" class="uw-h3" style="font-weight:lighter;">China</h3>
<div id="China-ul" class="China-uw-class">
<div><label><input type="checkbox" id="check_all_uw" class="uw-checkbox">Select All</label></div>
<div><label><input type="checkbox" class="uw-checkbox">Zhang Yi</label></div>
<div><label><input type="checkbox" class="uw-checkbox">Ken Yan</label></div>
</div>
</div>

关于jquery - 使用 Jquery 选择列表中的所有复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55615117/

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