當(dāng)前位置:首頁 > IT技術(shù) > 其他 > 正文

單選多選
2022-04-19 11:25:26

$("#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/

開通會員,享受整站包年服務(wù)立即開通 >