最新的Web開發教程
 

XML DOM appendData() Method


<註釋對象

下面的代碼片段輸出“ books_comment.xml ”載入xmlDoc並追加文本的第一個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, 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) {
            x[i].appendData(" Special Offer");
            txt += x[i].data + "<br>";
        }
    }
    document.getElementById("demo").innerHTML = txt;
}

輸出:

125 Simple and Delicious Recipes (Hardcover) Special Offer
試一試»

在上面的例子中,我們使用一個循環和IF測試,以確保我們只處理註釋節點。 註釋節點的8節點類型。


定義和用法

appendData()方法的註釋節點的末尾添加數據。

句法

commentNode.appedData(string)
參數 描述
string 需要。 字符串添加到註釋節點

<註釋對象