小码哥的IT人生

XML DOM length 属性

XML基础 2023-08-12 19:02:34小码哥的IT人生shichen

XML DOM length 属性

定义和用法

length 属性返回注释节点中的文本长度,以字符数计。

语法:

commentNode.length

实例

以下代码段使用 JavaScript 函数 loadXMLDoc() 把 XML 文件 books_comment.xml 载入 xmlDoc 中,并获得第一个 <book> 元素的注释文本的长度:

xmlDoc=loadXMLDoc("books_comment.xml");
x=xmlDoc.getElementsByTagName("book")[0].childNodes;
for (i=0;i<x.length;i++)
{
if (x[i].nodeType==8)
  {
  //Process only comment nodes
  document.write(x[i].length);
  document.write("<br />");
  }
}

以上代码的输出:

20

在本例中,我们使用一段循环和 if 语句来执行只针对 comment 节点的处理。comment 节点的节点类型是 8。

TIY

完整实例【length 属性 - 获取注释节点的长度】:

<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/demo/example/xdom/books_comment.xml");
x=xmlDoc.getElementsByTagName("book")[0].childNodes;
for (i=0;i<x.length;i++)
{
if (x[i].nodeType==8)
  {
  //Process only comment nodes
  document.write(x[i].length);
  document.write("<br />");
  }
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024