attribute
是XML
元素中的概念,用于描述XML
标签的附加信息,即XML
标签的属性,property
是JavaScript
对象中的概念,用于描述JavaScript
对象的成员,即JavaScript
对象的属性。
在描述HTML
时需要为其设定一些属性值的键值对用以描述标签:
<input ID="this-input" type="text" value="test" />
上述标签节点就定义了3
个attribute
:
ID: this-inputtype: textvalue: test
而浏览器在解析这段HTML
后,就会创建一个Element
对象,该对象包括很多属性property
例如ID
、INNERHTML
、outerHTML
等等,而对于这个Js
对象,其许多属性property
都与这个节点元素具有相同或相似名称的attribute
,但这不是一对一的关系。
attribute
存在与property
的1:1
的映射,例如ID
属性。某些attribute
存在与property
的1:1
的映射但名称不同,例如class
属性。某些attribute
不存在与property
的映射,例如自定义的customize
属性。实例首先将<input>
标签中的type
进行更改:
<input ID="this-input" type="t" value="test" />
此时用Js
取得对象的attribute
以及property
:
console.log(document.querySelector("#this-input").getAttribute("type")); // t // attributeconsole.log(document.querySelector("#this-input").type); // text // property
可以看到对于property
而言,其会自动修正不正确的值,而对于attribute
而言,其保留了关于DOM
节点元素原本的值,可以说attribute
从语义上,更倾向于不可变更的值,而property
从语义上更倾向于在其生命周期中是可变的值。下面是一个同样的例子,当更改输入框中的test
值为其他值比如t
时,分别取得其attribute
以及property
:
console.log(document.querySelector("#this-input").getAttribute("value")); // testconsole.log(document.querySelector("#this-input").value); // tconsole.log(document.querySelector("#this-input").defaultValue); // test
可以看到attribute
依旧保留了其原始值,而property
获得了改变后的值,如果需要在property
获得其原始值可以使用defaultValue
属性。
如果在DOM
节点自定义了某些attribute
,其不一定会同步到property
,同样在property
定义的属性不一定会同步到attribute
。
<input ID="another-input" type="type" customize="test" />
console.log(document.querySelector("#another-input").customize); // undefinedconsole.log(document.querySelector("#another-input").getAttribute("customize")); // test
代码示例<!DOCTYPE HTML><HTML><head> <Title>Attribute Property</Title></head><body> <input ID="this-input" type="t" value="test" /> <input ID="another-input" type="type" customize="test" /></body> <script type="text/JavaScript"> console.log(document.querySelector("#this-input").type); // text console.log(document.querySelector("#this-input").getAttribute("type")); // t console.log(document.querySelector("#another-input").customize); // undefined console.log(document.querySelector("#another-input").getAttribute("customize")); // test </script></HTML>
每日一题https://github.com/WindrunnerMax/EveryDay
参考https://www.jianshu.com/p/8415edb391cehttps://juejin.im/post/5bea695ae51d45196e141f7fhttps://stackoverflow.com/questions/6003819/what-is-the-difference-between-propertIEs-and-attributes-in-HTML/6377829#6377829
总结 以上是内存溢出为你收集整理的Attribute和Property的区别全部内容,希望文章能够帮你解决Attribute和Property的区别所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)