$("#allCheckBox").click(function() {
if($("#allCheckBox").is(":checked")) {
$(".cart_td_1").children(":checkbox").prop("checked", true)
} else {
$(".cart_td_1").children(":checkbox").prop("checked", false)
}
})
$(".cart_td_1").children(":checkbox").click(function() {
var length = $(".cart_td_1").children(":checkbox").length;
var shu = 0;//用于判斷總數(shù)的計數(shù)器
$(".cart_td_1").children(":checkbox").each(function(i, ele) {
if($(ele).is(":checked")) {
shu++;
}
})
if(shu == length) {
$("#allCheckBox").prop("checked", true)
} else {
$("#allCheckBox").prop("checked", false)
}
})
本文摘自 :https://www.cnblogs.com/