jquery新版本旧版本之间的坑
Posted baojiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery新版本旧版本之间的坑相关的知识,希望对你有一定的参考价值。
JQuery自1.6.1版本开始增加一些属性,使用时尽量使用这些新的属性,例如:selected、checked。在高版本中赋值时最好用prop,如果用attr就会出现赋值不成功的问题,
一般自定义属性用attr,固有属性用prop
以下是官方建议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新版本旧版本之间的坑的主要内容,如果未能解决你的问题,请参考以下文章