Metoda appendChild() DOM XML
Definicja i użycie
appendChild()
Metoda dodaje węzeł za ostatnim dzieckiem określonego węzła elementu.
Ta metoda zwraca nowy węzeł.
Gramatyka
appendChild(node)
Parametr | Opis |
---|---|
node | Wymagane. Węzeł do dodania. |
Przykład
Przykład 1
Poniższy kodładuje "books.xml" do xmlDoc i tworzy węzeł (<edition>), a następnie dodaje go za ostatnim dzieckiem pierwszego węzła <book>:
var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myFunction(this); } }; xhttp.open("GET", "books.xml", true); xhttp.send(); function myFunction(xml) { var xmlDoc = xml.responseXML; var newel = xmlDoc.createElement("edition"); var x = xmlDoc.getElementsByTagName("book")[0]; x.appendChild(newel); document.getElementById("demo").innerHTML = x.getElementsByTagName("edition")[0].nodeName; }
Przykład 2
Poniższy kod załaduje "books.xml" do xmlDoc i doda nowe węzły do wszystkich elementów <book>:
var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (xhttp.readyState == 4 && xhttp.status == 200) { myFunction(xhttp); } }; xhttp.open("GET", "books.xml", true); xhttp.send(); function myFunction(xml) { zmienne x, y, z, i, newel, newtext, xmlDoc, txt; xmlDoc = xml.responseXML; txt = ""; x = xmlDoc.getElementsByTagName("book"); for (i = 0; i < x.length; i++) { newel = xmlDoc.createElement("edition"); newtext = xmlDoc.createTextNode("first"); newel.appendChild(newtext); x[i].appendChild(newel); } // Wydrukuj wszystkie title i edition y = xmlDoc.getElementsByTagName("title"); z = xmlDoc.getElementsByTagName("edition"); for (i = 0; i < y.length; i++) { txt += y[i].childNodes[0].nodeValue + " - Edycja: " + z[i].childNodes[0].nodeValue + "<br>"; } document.getElementById("demo").innerHTML = txt; }