关于jQuery中attr(),prop()的使用
Posted caojiayan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于jQuery中attr(),prop()的使用相关的知识,希望对你有一定的参考价值。
注意:什么时候使用attr(),什么时候使用prop()?
1.添加属性名称该属性就会生效应该使用prop();
2.是有true,false两个属性使用prop();
3.其他则使用attr();
以下是官方建议attr(),prop()的使用:
Attribute/Property | .attr() | .prop() |
---|---|---|
accesskey | √ | |
align | √ | |
async | √ | √ |
autofocus | √ | √ |
checked | √ | √ |
class | √ | |
contenteditable | √ | |
draggable | √ | |
href | √ | |
id | √ | |
label | √ | |
location ( i.e. window.location ) | √ | √ |
multiple | √ | √ |
readOnly | √ | √ |
rel | √ | |
selected | √ | √ |
src | √ | |
tabindex | √ | |
title | √ | |
type | √ | |
width ( if needed over .width() ) |
√ |
以上是关于关于jQuery中attr(),prop()的使用的主要内容,如果未能解决你的问题,请参考以下文章