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.文本节点 获取的节点是纯文本的是文本节点
2022-11-10 15:31:29
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.文本节点 获取的节点是纯文本的是文本节点