复选框全选反选问题
Posted 倚天剑雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了复选框全选反选问题相关的知识,希望对你有一定的参考价值。
<script type="text/javascript"> $(function(){ $("#dispatch_btn").click(function(){ var array = []; $(‘input[name=chk_list]‘).each(function(){ if($(this).is(‘:checked‘)) array.push($(this).parent().next().val()); }); console.log(array); }); }); function allCheck(e){ console.log("%o",e); if($("#chkall").is(‘:checked‘)){ $(‘input[name=chk_list]‘).each(function() { console.log(this); $(this).prop("checked", true); }); } else { $(‘input[name=chk_list]‘).each(function() { console.log(this); $(this).removeAttr("checked"); }); } } </script>
springmvc控制器端可直接用String[]接受数组参数
注意点:
$(this).attr("checked",true)这种方式有可能只有一次生效,原因不明
以上是关于复选框全选反选问题的主要内容,如果未能解决你的问题,请参考以下文章