XML DOM createCDATASection() మాధ్యమం
నిర్వచనం మరియు ఉపయోగం
createCDATASection()
మాధ్యమం సృష్టిస్తుంది CDATA section ను.
ఈ మాధ్యమం CDATASection ఆబ్జెక్ట్ను తిరిగి ఇస్తుంది.
సింథాక్సిస్
createCDATASection(డేటా)
పారామీటర్స్ | వివరణ |
---|---|
డేటా | నోడ్ డేటా ని నిర్వచిస్తుంది. |
ప్రతిమాత్రము
ఈ కోడు "books.xml" ను xmlDoc లోకి లోడ్ చేస్తుంది మరియు <book> ఎలమెంట్కు CDATA section ను జోడిస్తుంది:
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, i, newCDATA, newtext, xmlDoc, txt; xmlDoc = xml.responseXML; txt = ""; x = xmlDoc.getElementsByTagName("book"); newtext = "Special Offer & Book Sale"; for (i = 0; i < x.length; i++) { newCDATA = xmlDoc.createCDATASection(newtext); x[i].appendChild(newCDATA); } for (i = 0; i < x.length; i++) { txt += x[i].getElementsByTagName("title")[0].childNodes[0].nodeValue + " - " + x[i].lastChild.nodeValue + "<br>"; } document.getElementById("demo").innerHTML = txt; }