博客
关于我
Attribute和Property的区别
阅读量:409 次
发布时间:2019-03-06

本文共 1733 字,大约阅读时间需要 5 分钟。

Attribute和Property的区别

attributeXML元素中的概念,用于描述XML标签的附加信息,即XML标签的属性,propertyJavaScript对象中的概念,用于描述JavaScript对象的成员,即JavaScript对象的属性。

描述

在描述HTML时需要为其设定一些属性值的键值对用以描述标签:

上述标签节点就定义了3attribute

id: this-inputtype: textvalue: test

而浏览器在解析这段HTML后,就会创建一个Element对象,该对象包括很多属性property例如idinnerHTMLouterHTML等等,而对于这个Js对象,其许多属性property都与这个节点元素具有相同或相似名称的attribute,但这不是一对一的关系。

  • 某些attribute存在与property1:1的映射,例如id属性。
  • 某些attribute存在与property1:1的映射但名称不同,例如class属性。
  • 某些attribute不存在与property的映射,例如自定义的customize属性。

实例

首先将<input>标签中的type进行更改:

此时用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

console.log(document.querySelector("#another-input").customize); // undefinedconsole.log(document.querySelector("#another-input").getAttribute("customize")); // test

代码示例

    Attribute Property            

每日一题

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

转载地址:http://lsckz.baihongyu.com/

你可能感兴趣的文章
MapReduce程序依赖的jar包
查看>>
mariadb multi-source replication(mariadb多主复制)
查看>>
MariaDB的简单使用
查看>>
MaterialForm对tab页进行隐藏
查看>>
Member var and Static var.
查看>>
memcached高速缓存学习笔记001---memcached介绍和安装以及基本使用
查看>>
memcached高速缓存学习笔记003---利用JAVA程序操作memcached crud操作
查看>>
Memcached:Node.js 高性能缓存解决方案
查看>>
memcache、redis原理对比
查看>>
memset初始化高维数组为-1/0
查看>>
Metasploit CGI网关接口渗透测试实战
查看>>
Metasploit Web服务器渗透测试实战
查看>>
MFC模态对话框和非模态对话框
查看>>
Moment.js常见用法总结
查看>>
MongoDB出现Error parsing command line: unrecognised option ‘--fork‘ 的解决方法
查看>>
mxGraph改变图形大小重置overlay位置
查看>>
MongoDB可视化客户端管理工具之NoSQLbooster4mongo
查看>>
Mongodb学习总结(1)——常用NoSql数据库比较
查看>>
MongoDB学习笔记(8)--索引及优化索引
查看>>
mongodb定时备份数据库
查看>>