码迷,mamicode.com
首页 > Web开发 > 详细

jQuery学习之prop和attr的区别

时间:2014-12-26 12:52:04      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

.prop()
 
1、.prop( propertyName )
获取匹配集合中第一个元素的Property的值
2、
.prop( propertyName, value )
.prop( map )
.prop( propertyName, function(index, oldPropertyValue) )
给匹配元素集合设定一个或多个属性
 
.prop()和 .attr()区别
 
下面是关于jQuery1.6和1.6.1中Attributes模块变化的描述,以及.attr()方法和.prop()方法的首选使用
 
Attributes模块的变化是移除了attributes和properties之间模棱两可的东西,但是在jQuery社区中引起了一些混乱,因为 在1.6之前的所有版本中都使用一个方法(.attr())来处理attributes和properties。但是老的.attr()方法有一些 bug,很难维护。jQuery1.6.1对Attributes模块进行了更新,并且修复了几个bug。
 
elem.checked true (Boolean) Will change with checkbox state
$(elem).prop("checked") true (Boolean) Will change with checkbox state
elem.getAttribute("checked") "checked" (String) Initial state of the checkbox; does not change
$(elem).attr("checked")(1.6) "checked" (String) Initial state of the checkbox; does not change
$(elem).attr("checked")(1.6.1+) "checked" (String) Will change with checkbox state
$(elem).attr("checked")(pre-1.6) true (Boolean) Changed with checkbox state
 
if ( elem.checked )
if ( $(elem).prop("checked") )
if ( $(elem).is(":checked") )
 
这三个都是返回Boolean值。

jQuery学习之prop和attr的区别

标签:

原文地址:http://www.cnblogs.com/FlowLight/p/4186431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!