XML DOM length 属性
XML DOM Comment 对象的 length 属性返回注释节点中文本的长度(以字符计)
语法
commentNode.length
范例
下面的代码从第一个 <title> 元素取得文本节点数据和长度
xmlDoc=loadXMLDoc("/static/media/dom/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(""); } }
上面的范例中,我们使用一段循环和 if 语句来执行只针对 comment 节点的处理
comment 节点的节点类型是 8