Jquery 属性attr("checked") 特性prop("checked") 全选问题
$("#chkAll").bind("change",function(){ $("input[type='checkbox']").attr("checked", $("#chkAll").attr("checked")); });
使用上述代码最全选/取消全选时发现,$("#chkAll").attr("checked")返回的是checked或者是undefined,不是原来的true和false了,将控制元素设置上checked属性如:$("#chkAll").attr("checked"),这时发现无论如何值都为true。于是查阅http://api.jquery.com/attr/发现其中有如下描述:
As of jQuery 1.6, the .attr() method returns undefined for attributes that have not been set. To retrieve and change DOM properties such as the checked, selected, or disabled state of form elements, use the .prop() method.
也就是说,这样写在JQ1.6之前完全没问题,可是当我们升级JQ1.6到更高的版本时,我们会发现:
$('#chkAll').attr('checked'); 返回的是checked或者是undefined,不是原来的true和false了。
并且checked属性在页面初始化的时候已经初始化好了,不会随着状态的改变而改变。所以如果checkbox一开始是选中的,那么返回的是checked,如果一开始没被选中,则返回的是undefined。
分析了其中的原因,可以这样理解:
它将“属性”与“特性”做了区别,属性指的是“name, id, type, style”等等,特性指的是“selectedIndex, tagName, nodeName, disabled, checked, selected”等等。
JQ1.6之后,可以通过attr方法去获得属性,通过prop方法去获得特性
$("#chkAll").attr("checked"); //undefined $("#chkAll").prop("checked"); //true $("#chkAll").bind("change",function(){ $("input[type='checkbox']").prop("checked", $("#chkAll").prop("checked")); });
综合参考于:
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17