gpt4 book ai didi

JQuery:复选框如何在选择另一个复选框时选中或取消选中所有复选框

转载 作者:行者123 更新时间:2023-11-30 23:55:16 24 4
gpt4 key购买 nike

当我选择/取消选择 selectAll 复选框时,我希望选中或取消选中所有其他复选框。

没有子元素或父元素

HTML 代码:

<div>
<li class="input">
<input type="checkbox" name="selectAll" value=""></input>
</li>
<li class="input">
<input type="checkbox" name="practice" value=""></input>
</li>
<li class="input">
<input type="checkbox" name="filename" value=""></input>
</li>
<li class="input">
<input type="checkbox" name="comment" value=""></input>
</li>
</div>

这就是我到目前为止尝试做的 -

$(this).siblings('ul').find("input[type='checkbox']").prop('checked', true);

$(this).parent().find('input:checkbox:first').prop('checked', true);

最佳答案

给你。

标记:

  <div>
<li class="input">
<input type="checkbox" id="select-all" name="selectAll" value=""/>
</li>
<li class="input">
<input type="checkbox" name="practice" value=""/>
</li>
<li class="input">
<input type="checkbox" name="filename" value=""/>
</li>
<li class="input">
<input type="checkbox" name="comment" value=""/>
</li>
</div>

代码:

$("#select-all").on("click", function() {
var all = $(this);
$('input:checkbox').each(function() {
$(this).prop("checked", all.prop("checked"));
});
});

fiddle :http://jsfiddle.net/PcMnk/148/

关于JQuery:复选框如何在选择另一个复选框时选中或取消选中所有复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19569510/

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