<Comment Nesne
Örnek
Aşağıdaki kod parçası yükler " books_comment.xml xmlDoc içine" ve ilk açıklama elemana metni ekler:
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;
}
Çıktı:
125 Simple and Delicious Recipes (Hardcover) Special Offer
Kendin dene " Emin biz sadece süreç yorum düğümleri yapmak eğer test örnekte bir döngü ve kullanmak yukarıda. Bir açıklama düğümünün 8 bir düğüm türü vardır.
Tanımı ve Kullanımı
appendData() yöntemi, bir açıklama düğümü sonunda bilgi ekler.
Sözdizimi
commentNode.appedData(string)
Parametre | Açıklama |
---|---|
string | Gereklidir. dize açıklama düğümü eklemek |
<Comment Nesne