本文共 655 字,大约阅读时间需要 2 分钟。
html文件
JS文件
//给相同名称的CheckBox赋属性值 function selectAll(){ $('input[name="groupItem"]').val(function(index,val){ $(this).prop('checked',true); //$(this).attr('checked',true);//错误 return val; })}function unSelectAll(){ $('input[name="groupItem"]').val(function(index,val){ $(this).prop('checked',false); //$(this).attr('checked',false);错误 return val; })}
转载地址:http://xattx.baihongyu.com/