<แสดงความคิดเห็นวัตถุ
ตัวอย่าง
รหัสชิ้นส่วนโหลดต่อไป " books_comment.xml " ลง XMLDOC และต่อท้ายข้อความไปยังองค์ประกอบความคิดเห็นแรก:
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
ลองตัวเอง» ในตัวอย่างข้างต้นเราจะใช้ห่วงและหากการทดสอบที่จะทำให้แน่ใจว่าเราเพียงขั้นตอนการแสดงความคิดเห็นโหนด ความคิดเห็นโหนดมีประเภทโหนด 8
ความหมายและการใช้งาน
appendData() วิธีการเพิ่มข้อมูลในตอนท้ายของการแสดงความคิดเห็นโหนด
วากยสัมพันธ์
commentNode.appedData(string)
พารามิเตอร์ | ลักษณะ |
---|---|
string | จำเป็นต้องใช้ สตริงเพื่อเพิ่มไปยังโหนดแสดงความคิดเห็น |
<แสดงความคิดเห็นวัตถุ