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 });
时间: 2024-10-10 14:45:02
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 });