<แสดงความคิดเห็นวัตถุ
ตัวอย่าง
รหัสชิ้นส่วนโหลดต่อไป " 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].insertData(25, "Italian ");
txt += x[i].data + "<br>";
}
}
document.getElementById("demo").innerHTML = txt;
}
เอาท์พุท:
125 Simple and Delicious Italian Recipes (Hardcover)
ลองตัวเอง» ในตัวอย่างข้างต้นเราจะใช้ห่วงและหากการทดสอบที่จะทำให้แน่ใจว่าเราเพียงขั้นตอนการแสดงความคิดเห็นโหนด ความคิดเห็นโหนดมีประเภทโหนด 8
ความหมายและการใช้งาน
insertData() วิธีการแทรกข้อมูลเพื่อแสดงความคิดเห็นโหนด
วากยสัมพันธ์
commentNode.insertData(start,string)
พารามิเตอร์ | ลักษณะ |
---|---|
start | จำเป็นต้องใช้ ระบุว่าจะเริ่มต้นการใส่ตัวอักษร ค่าเริ่มต้นเริ่มต้นที่ศูนย์ |
string | จำเป็นต้องใช้ ระบุสตริงเพื่อแทรก |
<แสดงความคิดเห็นวัตถุ