XML DOM length 属性
❮ Comment 对象
实例
以下代码片段将"books_comment.xml"加载到 xmlDoc 中,从第一个<title> 元素获取文本节点数据和长度:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET",
"books_comment.xml", true);
xhttp.send();
function myFunction(xml) {
var x, i,
xmlDoc, txt;
xmlDoc = xml.responseXML;
txt = "";
x = xmlDoc.getElementsByTagName("book")[0].childNodes;
for (i = 0; i < x.length; i++) {
// Process only
comment nodes
if (x[i].nodeType
== 8) {
txt += x[i].length + "<br>";
}
}
document.getElementById("demo").innerHTML = txt;
}
上述代码的输出为:
44
亲自试一试 »
在本例中,我们使用一段循环和 if 语句来执行只针对 comment 节点的处理。comment 节点的节点类型是 8。
定义和用法
length 属性返回注释节点中的文本长度,以字符数计。
语法
commentNode.length
❮ Comment 对象