DOM元素的attribute和property很容易混倄在一起,分不清楚,两者是不同的东西,但是两者又联系紧密。很多新手朋友,也包括以前的我,经常会搞不清楚。

attribute翻译成中文术语为“特性”,property翻译成中文术语为“属性”,从中文的字面意思来看,确实是有点区别了,先来说说attribute。

attribute是一个特性节点,每个DOM元素都有一个对应的attributes属性来存放所有的attribute节点,attributes是一个类数组的容器,说得准确点就是NameNodeMap,总之就是一个类似数组但又和数组不太一样的容器。attributes的每个数字索引以名值对(name=”value”)的形式存放了一个attribute节点。

<div class="box" id="box" gameid="880">hello</div>

上面的div元素的HTML代码中有class、id还有自定义的gameid,这些特性都存放在attributes中,类似下面的形式:

[ class="box", id="box", gameid="" ]

可以这样来访问attribute节点:

var elem = document.getElementById( 'box' );
console.log( elem.attributes[0].name ); // class
console.log( elem.attributes[0].value ); // box

但是IE6-7将很多东西都存放在attributes中,上面的访问方法和标准浏览器的返回结果又不同。通常要获取一个attribute节点直接用getAttribute方法:

console.log( elem.getAttribute('gameid') ); //

要设置一个attribute节点使用setAttribute方法,要删除就用removeAttribute:

elem.setAttribute('testAttr', 'testVal');
console.log( elem.removeAttribute('gameid') ); // undefined

attributes是会随着添加或删除attribute节点动态更新的。

property就是一个属性,如果把DOM元素看成是一个普通的Object对象,那么property就是一个以名值对(name=”value”)的形式存放在Object中的属性。要添加和删除property也简单多了,和普通的对象没啥分别:

elem.gameid = 880; // 添加
console.log( elem.gameid ) // 获取
delete elem.gameid // 删除

之所以attribute和property容易混倄在一起的原因是,很多attribute节点还有一个相对应的property属性,比如上面的div元素的id和class既是attribute,也有对应的property,不管使用哪种方法都可以访问和修改。

console.log( elem.getAttribute('id') ); // box
console.log( elem.id ); // box
elem.id = 'hello';
console.log( elem.getAttribute('id') ); // hello

但是对于自定义的attribute节点,或者自定义property,两者就没有关系了。

console.log( elem.getAttribute('gameid') ); //
console.log( elem.gameid ); // undefined
elem.areaid = '900';
console.log( elem.getAttribute('areaid') ) // null

对于IE6-7来说,没有区分attribute和property:

console.log( elem.getAttribute('gameid') ); //
console.log( elem.gameid ); //
elem.areaid = '900';
console.log( elem.getAttribute('areaid') ) //

很多新手朋友估计都很容易掉进这个坑中。

DOM元素一些默认常见的attribute节点都有与之对应的property属性,比较特殊的是一些值为Boolean类型的property,如一些表单元素:

<input type="radio" checked="checked" id="raido">
var radio = document.getElementById( 'radio' );
console.log( radio.getAttribute('checked') ); // checked
console.log( radio.checked ); // true

对于这些特殊的attribute节点,只有存在该节点,对应的property的值就为true,如:

<input type="radio" checked="anything" id="raido">
var radio = document.getElementById( 'radio' );
console.log( radio.getAttribute('checked') ); // anything
console.log( radio.checked ); // true

最后为了更好的区分attribute和property,基本可以总结为attribute节点都是在HTML代码中可见的,而property只是一个普通的名值对属性。

// gameid和id都是attribute节点
// id同时又可以通过property来访问和修改
<div gameid="880" id="box">hello</div>
// areaid仅仅是property
elem.areaid = 900;

转载自:雨夜带刀's Blog

最新文章

  1. Android图片处理
  2. 初学iPad开发入门
  3. Jquery报错:Uncaught TypeError: ((m.event.special[e.origType] || (intermediate value)).handle || e.handler).apply is not a function
  4. iOS 第三方自定义Alertview项目MBProcessHud中的重要代码分析
  5. TCP/IP简介
  6. 在PowerDesigner中设计物理模型2——约束
  7. Android 设置thumb图片大小
  8. TOMCAT启动到一半停止如何解决
  9. HDU 5752 Sqrt Bo【枚举,大水题】
  10. JAVA受检异常和非受检异常举例
  11. document.forms[].submit()
  12. 利用truffle与智能合约进行交互
  13. Python学习笔记【第一篇】:认识python和基础知识
  14. Linux下/usr/bin与/usr/local/bin/区别总结
  15. 【洛谷p1106】删数问题
  16. linux 的内核的作用和功能
  17. Floyd_Warshall算法
  18. 同步(Synchronous)和异步(Asynchronous)的概念
  19. aiohttp的模板
  20. 前阿里DT总监欧吉良猝死:一代大神勾践陨落滴滴

热门文章

  1. 【bzoj2140】: 稳定婚姻 图论-tarjan
  2. django 实现电子支付功能
  3. Python实现——决策树(部分函数/连续数据)
  4. Python3之os模块
  5. SDUT OJ 数据结构实验之排序四:寻找大富翁
  6. SQL 单引号转义
  7. linux系统下的日志,此日志对于系统安全来说是非常重要的一 个机制!!
  8. Exadata 18.1新特性--云平台存储节点升级
  9. C++_基础3-循环和关系表达式
  10. LeetCode记录之21——Merge Two Sorted Lists