<Comentariu Obiect
Exemplu
Următorul cod încarcă fragment „ books_comment.xml “ în xmlDoc și introduce un șir de caractere la primul nod 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].insertData(25, "Italian ");
txt += x[i].data + "<br>";
}
}
document.getElementById("demo").innerHTML = txt;
}
ieşire:
125 Simple and Delicious Italian Recipes (Hardcover)
Î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
insertData() metoda introduce date într - un comentariu nod.
Sintaxă
commentNode.insertData(start,string)
Parametru | Descriere |
---|---|
start | Necesar. Specifică unde să înceapă inserarea de caractere. Valoarea de pornire pornește de la zero |
string | Necesar. Specifică șirul pentru a insera |
<Comentariu Obiect