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();
    
});
原文地址:https://www.cnblogs.com/zjpzjp/p/7575812.html