<註釋對象
例
下面的代碼片段輸出“ books_comment.xml ”載入xmlDoc中,並得到"(Hardcover) ”串形成第一comment元素:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
myFunction(xhttp);
}
};
xhttp.open("GET", "books_comment.xml", true);
xhttp.send();
function myFunction(xml) {
var x, i, y, txt,
xmlDoc;
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) {
y = x[i].substringData(33, 11);
txt += y + "<br>";
}
}
document.getElementById("demo").innerHTML = txt;
}
輸出:
(Hardcover)
試一試» 在上面的例子中,我們使用一個循環和IF測試,以確保我們只處理註釋節點。 註釋節點的8節點類型。
定義和用法
該substringData()方法從註釋節點的字符串。
句法
substringData(start,length)
參數 | 描述 |
---|---|
start | 需要。 指定從何處開始提取字符。 起始值從零開始 |
length | 需要。 指定多少字符提取 |
<註釋對象