使用JQuery实现复选框的全选和反选
jQuery(document).ready(function($) {
$("#checkAll").click(function(){
if(this.checked){
$("[name='complaintReasonVO.complaintReasons']").attr("checked",'true'); // 全选
}else {
$("[name='complaintReasonVO.complaintReasons']").removeAttr("checked"); // 反选
}
});