JQuery中Checkbox选择

高吉星
2023-12-01

判断是否选中

$(this).is(":checked")


取消选中
$(this).prop("checked", false)

选中
$(this).prop("checked", true)
 类似资料: