วิธี XML DOM createElementNS()
คำนิยามและวิธีใช้
createElementNS()
วิธีที่สร้างตัวเลขที่มีชื่อสาขา
วิธีที่นี้กลับคืน Element ตัว
รูปแบบ
createElementNS(ns,name)
ตัวเลข | คำอธิบาย |
---|---|
ns | ข้อความ กำหนดชื่อสาขาของตัวเลข |
name | ข้อความ กำหนดชื่อตัวเลข |
ตัวอย่าง
รหัสใต้นี้จะโหลด "books.xml" สู่ xmlDoc และเพิ่มตัวเลขอย่างมีชื่อสาขาในแบบแบบ <book> ทุกตัว:
var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myFunction(this); } }; xhttp.open("GET", "books.xml", true); xhttp.send(); function myFunction(xml) { var x, y, z, i, newel, newtext, xmlDoc, txt; xmlDoc = xml.responseXML; txt = ""; x = xmlDoc.getElementsByTagName("book"); // ใช้ชื่อสาขาและตัวเลขตัวอย่างสร้างตัวเลข for (i = 0; i < x.length; i++) { newel = xmlDoc.createElementNS("p", "edition"); newtext = xmlDoc.createTextNode("First"); newel.appendChild(newtext); x[i].appendChild(newel); } // ออกสัญญาณทั้งหมด title และ edition y = xmlDoc.getElementsByTagName("title"); z = xmlDoc.getElementsByTagNameNS("p","edition"); for (i = 0; i < y.length; i++) { txt += y[i].childNodes[0].nodeValue + " - " + z[i].childNodes[0].nodeValue + " edition." + " Namespace: " + z[i].namespaceURI + "<br>"; } document.getElementById("demo").innerHTML = txt; }