标签:bsp this click 切换 his function 版本 eve event
在jq高版本中checked值有以下坑:
1、判断是否被选中时请用:
$(this).is(":checked")
2、在选中与不选中切换时请用:
$("#checkAll").click(function(event){
var state = $tbr.prop(‘checked‘);
$tbr.prop(‘checked‘,!state)
}
标签:bsp this click 切换 his function 版本 eve event
原文地址:http://www.cnblogs.com/qingtouniao/p/7086451.html