Ultimele tutoriale de dezvoltare web
 

XML DOM appendData() Method


<Comentariu Obiect

Exemplu

Următorul cod încarcă fragment „ books_comment.xml “ în xmlDoc și adaugă text la primul element de comentariu:

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;
}

ieşire:

125 Simple and Delicious Recipes (Hardcover) Special Offer
Încearcă - l singur »

În exemplul de mai sus, vom folosi o buclă și un test în cazul în care pentru a ne asigura că singurul proces comentariu noduri. Un comentariu nod are un tip de nod de 8.


Definiție și utilizare

appendData() Metoda se adaugă date la sfârșitul unui comentariu nod.

Sintaxă

commentNode.appedData(string)
Parametru Descriere
string Necesar. Șirul pentru a adăuga la comentarii nodul

<Comentariu Obiect