在前阵子看JQuery源码中,attr()的简单理解是调用了element.getAttribute()和element.setAttribute()方法,removeAttr()简单而言是调用element.removeAttribute(),而prop()简单理解是element.xxx方式存取属性,removeProp()是通过delete element.xxx方式删除。

attribute与property都是属性的意思。那么有何区别呢?

对于这个问题,今天问了好几个群,也找到一些文章(感谢他们~~)

主要是看了下面几篇:

http://gxxsite.com/content/view/id/135.html

http://nuysoft.iteye.com/blog/1172122

http://www.tuicool.com/articles/3uuQRr6

http://www.web-tinker.com/article/20115.html

http://www.cnblogs.com/aaronjs/p/3387906.html

http://www.w3help.org/zh-cn/causes/SD9006

总结如下

attribute  property 举例
HTML属性 DOM节点对象属性  
返回初始化的值 返回当前的值
//<input id="test" type="text"/>
var test=document.getElementById("test");
test.getAttribute("required")
//null
test.required
//false

比如获取当前文本框的value

返回字符串 可以返回多种格式,可以是字符串,也可以是对象
 //<input id="test" type="text" style="color:#666"/>

var test=document.getElementById("test"); test.style

//CSSStyleDeclaration {0: "color", parentRule: null, length: 1, 
cssText: "color: rgb(102, 102, 102);", alignContent: "", alignItems: ""…}
test.getAttribute("style")
//"color:#666"
返回值与HTML代码中的属性值相同 返回值与HTML代码中的属性值可能不同
//<a id="test" href="/aaa.html">aaaaa</a>
var test=document.getElementById("test");
test.getAttribute("href")
//"/aaa.html"
test.href
//"file:///C:/aaa.html"
还比如checked属性
 可以获取HTML代码中自定义的属性  只能获取原生的属性值
//<input id="test" type="text" custom="text"/>

var test=document.getElementById("test");

test.getAttribute("custom")
//"text"
test.custom
//undefined
设值时DOM树结构变了 设值时DOM树结构不变
//<input id="test" type="text" value="10"/>
var test=document.getElementById("test"); test.value=20;
//<input id="test" type="text" value="10">
test.setAttribute("value",20)
//<input id="test" type="text" value="20">
     

其他:

1、element.className与 element.getAttribute("class")

2、element.for (获取不到)与 element.getAttribute("for")

3、element.onclick 与 element.getAttribute("onclick") (获取不到)
4、element.nodeName

5、属性值在浏览器之间的差异,举例:

//<input id="test" type="checkbox" checked="checked" />

alert(document.getElementById("test").checked);
//true(Chrome)
//true(IE7) alert(document.getElementById("test").getAttribute("checked"));
//checked(Chrome)
//true(IE7)

6、关于jq

①性能:prop>data>attr

attribute与property区别总结的更多相关文章

  1. jQuery的attr与prop,attribute和property区别

    jQuery1.6中新添加了一个prop方法,看起来和用起来都和attr方法一样,这两个方法有什么区别呢?这要从HTMl 的attribute与property区别说起,attr与prop正是这两个东 ...

  2. javascript DOM 操作 attribute 和 property 的区别

    javascript DOM 操作 attribute 和 property 的区别 在做 URLRedirector 扩展时,注意到在使用 jquery 操作 checkbox 是否勾选时,用 at ...

  3. attribute和property的区别

    DOM元素的attribute和property很容易混倄在一起,分不清楚,两者是不同的东西,但是两者又联系紧密.很多新手朋友,也包括以前的我,经常会搞不清楚. attribute翻译成中文术语为“特 ...

  4. javascript中attribute和property的区别详解

    DOM元素的attribute和property很容易混倄在一起,分不清楚,两者是不同的东西,但是两者又联系紧密.很多新手朋友,也包括以前的我,经常会搞不清楚. attribute翻译成中文术语为“特 ...

  5. JavaScript的attribute和property辨析

    1.Attribute Attribute是HTML上设置的属性,在html中显式地设置,或者通过setAttribute()方法设置. <input type='text' id='txt' ...

  6. Attribute和Property

    有时很容易对Attribute和Property混淆,因为中文翻译都是“属性”来解释的.其实这两个表达的不是一个层面的东西. Property属于面向对象理论范畴,在使用面向对象思想编程的时候,常常需 ...

  7. javascript之attribute 和 property

    首先看看这两个单词的英文释义(来自有道词典).先是property: property ['prɔpəti] n. 性质,性能:财产:所有权 英英释义: any area set aside for ...

  8. attribute和property兼容性分析

    上一篇文章中,详细的分析了他们的区别,请看Javascript中的attribute和property分析 这次,来详细的看下他们的兼容性,这些内容主要来自于对于jQuery(1.9.x)源代码的分析 ...

  9. C#中Attribute和Property

    XAML是XML派生而来的语言,所以很多XML中的概念在XAML中是通用的. 为了表示同类标签中的某个标签与众不同,可以给它的特征(Attribute)赋值,为特征值赋值的语法如下: 非空标签:< ...

随机推荐

  1. linux应用之mysql数据库的安装及配置(centos)

    CentOS下Mysql数据库的安装与配置   如果要在Linux上做j2ee开发,首先得搭建好j2ee的开发环境,包括了jdk.tomcat.eclipse的安装(这个在之前的一篇随笔中已经有详细讲 ...

  2. tensorflow 线性回归解决 iris 2分类

    # Combining Everything Together #---------------------------------- # This file will perform binary ...

  3. asterisk用 freetds记录 cdr 到mssql

    Compile, configure, and install the latest FreeTDS package: [pre]           tar -zxvf freetds-0.62.4 ...

  4. w3C盒子模型和IE的盒子模型

    W3C 盒子模型的范围包括 margin.border.padding.content,并且 content 部分不包含其他部分IE 盒子模型的范围也包括 margin.border.padding. ...

  5. XAMPP的端口被占用

    打开xampp\apache\conf\httpd.conf文件把80端口修改为:8081;打开xampp\apache\conf\extre\httpd-ssl.conf文件把443修改为4433或 ...

  6. HDU-2553

    N皇后问题 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submi ...

  7. Python 之Event

    线程间互相等状态. import threading import time import logging logging.basicConfig(level=logging.DEBUG, forma ...

  8. oop的三大特点

    1.封装性:也称为信息隐藏,就是将一个类的使用和实现分开,只保留部分接口和方法与外部联系,或者说只公开了一些供开发人员使用的方法.于是开发人员只 需要关注这个类如何使用,而不用去关心其具体的实现过程, ...

  9. dos生成目录树

    1. tree命令详解 [Tree命令作用] 以图形显示驱动器或路径的文件夹结构. [Tree命令格式] 在命令行窗口使用tree /?查看帮助. TREE [drive:][path] [/F] [ ...

  10. Codeforces764C【DFS】

    前言,根据最终图的样貌搞真厉害 "缩点判根度为结点数-1"牛逼 ----- 题意: 找一个根使得不带根的所有子树内部颜色都相同: 思路: 如果存在两个颜色不一样的连在一起,根就是他 ...