全选和反选

来源:互联网 发布:网络自由度排名 编辑:程序博客网 时间:2024/05/22 17:04
$("#checkall").click(function(){
/*$("input[name='checkbox']").attr("checked","true");*/

$("input[name='checkbox']").each(function(){ 
if($(this).prop("checked")){
$(this).removeAttr("checked"); 
}else{ 
$(this).prop("checked","true"); 

});


});

$("#delete").click(function(){
var $cks =$("table :checkbox:checked");
var nameArr = [ ];
            $cks.each(function () {
                if ($.inArray($(this).attr("name"), nameArr) == -1) {   
                    nameArr.push($(this).attr("name"));                       
                }

            });


原创粉丝点击