请知悉:本文最近一次更新为 10年 前,文中内容可能已经过时。

.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值。

浅尝辄止,没有精细的追问,获取checked是可以了。


如您从本文得到了有价值的信息或帮助,请考虑扫描文末二维码捐赠和鼓励。

尊重他人劳动成果。转载请务必附上原文链接,我将感激不尽。


与《jQuery-prop和attr的区别》相关的博文:


留言

avatar
😀
😀😁😂😅😭🤭😋😘🤔😰😱🤪💪👍👎🤝🌹👌