JQuery checkbox选中
1
2
3
4
5
6
# $(this)为<input type="checkbox"...>元素
if ($(this).prop('checked')) {
//
} else {
//
}