jquery中attr和prop的区别

Posted 归尘2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery中attr和prop的区别相关的知识,希望对你有一定的参考价值。

对于html元素本身就带有的固有属性,在处理时,使用prop方法。
对于HTML元素我们自己自定义的DOM属性,在处理时,使用attr方法。

<input id="chk2" type="checkbox" checked="checked"  action="delate"/>

以上HTML中JQ获取属性

alert($("#chk2").prop("checked"));//true ,如果用attr那么就是undefined
alert($("#chk2").attr("action"));//true,如果用prop那么就是undefined

以上是关于jquery中attr和prop的区别的主要内容,如果未能解决你的问题,请参考以下文章

jquery中attr和prop的区别

jquery中attr和prop的区别

jquery中attr和prop的区别

jquery中attr和prop的区别

Jquery学习笔记--jquery中attr和prop的区别精辟

jquery中attr和prop的区别