当前位置:  开发笔记 > 编程语言 > 正文

hasAttribute vs hasOwnProperty

如何解决《hasAttributevshasOwnProperty》经验,为你挑选了1个好方法。

我遇到了一些jquery代码,它试图使用hasOwnProperty来访问html属性.




据我所知,这应该永远是

if(!e.hasAttribute("placeholder")){...}

但是hasAttribute和hasOwnProperty有什么区别?它们是否相同?



1> Ian Ramos..:

hasAttribute()

hasAttribute() 仅适用于html元素,如果该元素与给定参数具有相同的属性名称,则返回true.

hasOwnProperty()

hasOwnProperty() 仅适用于JavaScript对象,如果该对象具有与给定参数同名的属性,则返回true.

var obj = {
    myProp: "my attribute"
}

obj.hasOwnProperty("myProp") //true
obj.hasAttribute("myProp") //false

一些html元素可以在javascript中构建,这就是为什么hasOwnProperty有时会为它工作,但hasAttribute永远不适用于javascript对象.

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有