XML DOM - ตั้งค่าโหนด
ในบทนี้เราจะศึกษาเกี่ยวกับวิธีการเปลี่ยนค่าของโหนดในอ็อบเจ็กต์ XML DOM ค่าโหนดสามารถเปลี่ยนแปลงได้ดังนี้ -
var value = node.nodeValue;
ถ้าโหนดเป็นแอตทริบิวต์แล้วค่าตัวแปรจะเป็นค่าของแอตทริบิวต์นั้น หากโหนดเป็นโหนดข้อความจะเป็นเนื้อหาข้อความ ถ้าโหนดเป็นองค์ประกอบมันจะเป็นโมฆะ
ส่วนต่อไปนี้จะสาธิตการตั้งค่าโหนดสำหรับโหนดแต่ละประเภท (แอตทริบิวต์โหนดข้อความและองค์ประกอบ)
node.xmlใช้ในทุกตัวอย่างต่อไปนี้จะเป็นด้านล่าง -
<Company>
<Employee category = "Technical">
<FirstName>Tanmay</FirstName>
<LastName>Patil</LastName>
<ContactNo>1234567890</ContactNo>
<Email>[email protected]</Email>
</Employee>
<Employee category = "Non-Technical">
<FirstName>Taniya</FirstName>
<LastName>Mishra</LastName>
<ContactNo>1234667898</ContactNo>
<Email>[email protected]</Email>
</Employee>
<Employee category = "Management">
<FirstName>Tanisha</FirstName>
<LastName>Sharma</LastName>
<ContactNo>1234562350</ContactNo>
<Email>[email protected]</Email>
</Employee>
</Company>
เปลี่ยนค่าของโหนดข้อความ
เมื่อเราพูดว่าค่าการเปลี่ยนแปลงขององค์ประกอบโหนดเราหมายถึงการแก้ไขเนื้อหาข้อความขององค์ประกอบ (ซึ่งเรียกอีกอย่างว่าโหนดข้อความ ) ตัวอย่างต่อไปนี้สาธิตวิธีการเปลี่ยนโหนดข้อความขององค์ประกอบ
ตัวอย่าง
ตัวอย่างต่อไปนี้ (set_text_node_example.htm) แยกวิเคราะห์เอกสาร XML ( node.xml ) ลงในอ็อบเจ็กต์ XML DOM และเปลี่ยนค่าของโหนดข้อความขององค์ประกอบ ในกรณีนี้อีเมลของพนักงานแต่ละคนไปที่[email protected]แล้วพิมพ์ค่า
<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc(filename) {
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else // code for IE5 and IE6 {
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET",filename,false);
xhttp.send();
return xhttp.responseXML;
}
</script>
</head>
<body>
<script>
xmlDoc = loadXMLDoc("/dom/node.xml");
x = xmlDoc.getElementsByTagName("Email");
for(i = 0;i<x.length;i++) {
x[i].childNodes[0].nodeValue = "[email protected]";
document.write(i+');
document.write(x[i].childNodes[0].nodeValue);
document.write('<br>');
}
</script>
</body>
</html>
การดำเนินการ
บันทึกไฟล์นี้เป็นset_text_node_example.htmบนเส้นทางเซิร์ฟเวอร์ (ไฟล์นี้และnode.xmlควรอยู่บนเส้นทางเดียวกันในเซิร์ฟเวอร์ของคุณ) คุณจะได้รับผลลัพธ์ต่อไปนี้ -
0) [email protected]
1) [email protected]
2) [email protected]
เปลี่ยนค่าของโหนดแอตทริบิวต์
ตัวอย่างต่อไปนี้สาธิตวิธีการเปลี่ยนโหนดแอตทริบิวต์ขององค์ประกอบ
ตัวอย่าง
ตัวอย่างต่อไปนี้ (set_attribute_example.htm) แยกวิเคราะห์เอกสาร XML ( node.xml ) ลงในอ็อบเจ็กต์ XML DOM และเปลี่ยนค่าของโหนดแอ็ตทริบิวต์ขององค์ประกอบ ในกรณีนี้ประเภทของพนักงานแต่ละคนถึงadmin-0, admin-1, admin-2ตามลำดับและพิมพ์ค่า
<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc(filename) {
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else // code for IE5 and IE6 {
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET",filename,false);
xhttp.send();
return xhttp.responseXML;
}
</script>
</head>
<body>
<script>
xmlDoc = loadXMLDoc("/dom/node.xml");
x = xmlDoc.getElementsByTagName("Employee");
for(i = 0 ;i<x.length;i++){
newcategory = x[i].getAttributeNode('category');
newcategory.nodeValue = "admin-"+i;
document.write(i+');
document.write(x[i].getAttributeNode('category').nodeValue);
document.write('<br>');
}
</script>
</body>
</html>
การดำเนินการ
บันทึกไฟล์นี้เป็นset_node_attribute_example.htmบนเส้นทางเซิร์ฟเวอร์ (ไฟล์นี้และnode.xmlควรอยู่บนเส้นทางเดียวกันในเซิร์ฟเวอร์ของคุณ) ผลลัพธ์จะเป็นดังนี้ -
0) admin-0
1) admin-1
2) admin-2