全选反选
$("#sel-all").click(function(){ //点击全选按钮
if($("input[type='checkbox']").attr("checked")=="checked"){
$("input[type='checkbox']").attr("checked","true");
}else{
$("input[type='checkbox']").removeAttr("checked");
}
})

浙公网安备 33010602011771号