admin管理员组文章数量:1344979
Using jQuery, how can I:
Have all checkboxes on a page turned checked
on
oroff
?Loop through all the checkboxes on the page which are selected. I.e something like this
$(sel-cboxes).each(myFunction);
So myFunction
would be called on each selected checkbox.
Thanks in advance!
Using jQuery, how can I:
Have all checkboxes on a page turned checked
on
oroff
?Loop through all the checkboxes on the page which are selected. I.e something like this
$(sel-cboxes).each(myFunction);
So myFunction
would be called on each selected checkbox.
Thanks in advance!
Share Improve this question edited Oct 6, 2020 at 16:23 Alex 1,5801 gold badge15 silver badges27 bronze badges asked May 16, 2009 at 11:48 AliAli 267k269 gold badges592 silver badges786 bronze badges5 Answers
Reset to default 91: To check all checkboxes
$("input:checkbox").attr('checked', true);
To uncheck all
$("input:checkbox").attr('checked', false);
2:
$("input:checkbox:checked").each(myFunction);
1- Have all checkboxes on a page turned checked on or off?
Edited: (correction)
$(':checkbox').attr('checked',true);
2- Loop through all the checkboxes on the page which are selected. I.e something like this
$(':checkbox :checked').each(function() {
});
This jQuery Selector will find all checkboxes that have been checked. and this
inside the each function will be assigned to this individual checkbox.
$(":checkbox:checked").each(function(){
doSomething(this);
})
If you want to turn all checkboxes on
then use this:
$(":checkbox").attr("checked","checked")
$("input:checked")
http://docs.jquery./Selectors/checked
1: Set the all to be of the same class and then
$(.classname).attr('checked', true);
本文标签: javascriptjQuery checkboxes manipulationStack Overflow
版权声明:本文标题:javascript - jQuery checkboxes manipulation - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743806731a2542311.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论