<CDATA วัตถุ
ตัวอย่าง
ต่อไปนี้ส่วนของโค้ดที่โหลด " books_cdata.xml " ลง XMLDOC และแทรกข้อมูลลงในโหนด CDATA แรก <html> องค์ประกอบ:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
myFunction(xhttp);
}
};
xhttp.open("GET", "books_cdata.xml", true);
xhttp.send();
function myFunction(xml) {
var xmlDoc = xml.responseXML;
var x =
xmlDoc.getElementsByTagName("html")[0].childNodes[0];
x.insertData(3, "Wonderful and ");
document.getElementById("demo").innerHTML =
x.data;
}
เอาท์พุท:
Wonderful and Stunning!
ลองตัวเอง» ความหมายและการใช้งาน
insertData() ข้อมูลวิธีการแทรกโหนด CDATA
วากยสัมพันธ์
insertData(start,string)
พารามิเตอร์ | ลักษณะ |
---|---|
start | จำเป็นต้องใช้ ระบุว่าจะเริ่มต้นการใส่ตัวอักษร ค่าเริ่มต้นเริ่มต้นที่ศูนย์ |
string | จำเป็นต้องใช้ ระบุข้อมูลที่จะใส่ |
<CDATA วัตถุ