Checkbox 选中 取消 失灵

prop选项定义属性是否,要进行判断,否则,点击没有效果


//全选/反选

function checkAllBox(){  
    //反选
        $(":checkbox").each(function() {
        var isAllChecked =  $('#selectAll').prop("checked");
        if(isAllChecked) {
        if ($(this).prop("checked") == false) 
        $(this).prop("checked", true);
        } else {
        if ($(this).prop("checked") == true) 
        $(this).prop("checked", false);
        }
        });
}

你可能感兴趣的:(Checkbox 选中 取消 失灵)