checkbox 全选反选 获得所有的checkbox
Posted Dios
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checkbox 全选反选 获得所有的checkbox相关的知识,希望对你有一定的参考价值。
1 $("#selectAll").click(function(){ 2 $("input[name=‘checkbox‘]").each(function(){ 3 if($(this).attr("checked")){ 4 $(this).removeAttr("checked"); 5 }else{ 6 $(this).attr("checked","true"); 7 } 8 }) 9 });
以上是关于checkbox 全选反选 获得所有的checkbox的主要内容,如果未能解决你的问题,请参考以下文章