码迷,mamicode.com
首页 > 其他好文 > 详细

Dom中的nodeName、nodeValue 、nodeType

时间:2014-11-26 13:30:58      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:style   color   sp   on   ad   as   size   tt   type   

nodeName、nodeValue 以及 nodeType 包含有关于节点的信息。

nodeName 属性含有某个节点的名称。

  • 元素节点的 nodeName 是标签名称
  • 属性节点的 nodeName 是属性名称
  • 文本节点的 nodeName 永远是 #text
  • 文档节点的 nodeName 永远是 #document

注释:nodeName 所包含的 XML 元素的标签名称永远是大写的

nodeValue

对于文本节点,nodeValue 属性包含文本。

对于属性节点,nodeValue 属性包含属性值。

nodeValue 属性对于文档节点和元素节点是不可用的。

nodeType

nodeType 属性可返回节点的类型。

最重要的节点类型是:

元素类型节点类型
元素element1
属性attr2
文本text3
注释comments8
文档document9

Dom中的nodeName、nodeValue 、nodeType

标签:style   color   sp   on   ad   as   size   tt   type   

原文地址:http://www.cnblogs.com/itjeff/p/4122657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!