input 全选

//全选
$(document).on('click','#allCheck',function(e){
    statusChioceRemove();//移除status列表
    if(this.checked==false){
//        this.checked = false;
        
        $('#ding_table>tbody>tr>td>input').removeAttr('checked');
    }
    if(this.checked==true){
//        this.checked = true;
        $('#ding_table>tbody>tr>td>input').prop('checked','true');
        
    }
    e.stopPropagation();

});
//全选
$(document).on('click','#ding_table>tbody input[type="checkbox"]',function(e){
    var inputList = $('#ding_table>tbody input[type="checkbox"]:checked');
    if(inputList.length==10){
        $('#allCheck').prop('checked','true');
    }else{
        $('#allCheck').removeAttr('checked');
    }
    e.stopPropagation();
    
});

 

posted @ 2017-09-22 17:02  教父123  阅读(246)  评论(0编辑  收藏  举报