NodeType的三个属性值

Posted qdxbls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NodeType的三个属性值相关的知识,希望对你有一定的参考价值。

 

Nodetype有3种

1 元素节点     一般获取的都是元素节点(最常用)

var d = document.getElementById("john");      

alert(d.nodeType)   1

2 属性节点(要用getAttributeNode来获取的)

      var d = document.getElementById("john").getAttributeNode("name");

      alert(d.nodeType)   2

3.文本节点    获取的节点是纯文本的是文本节点

 

技术图片

以上是关于NodeType的三个属性值的主要内容,如果未能解决你的问题,请参考以下文章

Java Script中的Node

Web APIs---4. DOM

元素属性文本,常见的noedType属性

js操作DOM对象

搞懂children和childNodes

Node接口