首页 > 代码库 > checkbox 框 选中判断

checkbox 框 选中判断

function checkAll(checktop){
$(":checkbox[name=‘id‘]").prop("checked",checktop.checked);
//$("#checkOrCancelAll").prop("checked",$(":checkbox[name=‘id‘]").length==$(":checkbox[name=‘id‘]:checked").length);
}
function controlFirstCheckbox(){
$("#checkOrCancelAll").prop("checked",$(":checkbox[name=‘id‘]").length==$(":checkbox[name=‘id‘]:checked").length);
}

checkbox 框 选中判断