checkbox 取消选中 checked
$(".checkitems").click(function() {
//$(this).prop("checked", true)
if ($(this).is(':checked')) {
$(this).attr("checked", true)
console.info("选中")
} else {
$(this).attr("checked", false)
console.info("取消选中")
}
});
//$(this).prop("checked", true)
if ($(this).is(':checked')) {
$(this).attr("checked", true)
console.info("选中")
} else {
$(this).attr("checked", false)
console.info("取消选中")
}
});