XML DOM createTextNode() विधि

वर्णन और उपयोग

createTextNode() विधि टेक्स्ट नोड बनाती है。

यह विधि Text ऑब्जैक्ट वापस देती है。

व्याकरण

createTextNode(text)
पैरामीटर वर्णन
text शब्द, नोड टेक्स्ट निर्दिष्ट करता है。

उदाहरण

नीचे कोड "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, xLen, yLen, newEle, newText, xmlDoc, txt;
    xmlDoc = xml.responseXML;
    txt = "";
    x = xmlDoc.getElementsByTagName("book");
    xLen = x.length;
    // एलिमेंट नोड और टेक्स्ट नोड बनाना
    for (i = 0; i < xLen; i++) {
        newEle = xmlDoc.createElement("edition");
        newText = xmlDoc.createTextNode("first");
        newEle.appendChild(newText);
        x[i].appendChild(newEle);
    }
    // निर्वाह सभी title और edition
    y = xmlDoc.getElementsByTagName("title");
    yLen = y.length
    z = xmlDoc.getElementsByTagName("edition");
    for (i = 0; i < yLen; i++) {
        txt += y[i].childNodes[0].nodeValue +
        " - संस्करण: " +
       z[i].childNodes[0].nodeValue + "<br>";
    }
    document.getElementById("demo").innerHTML = txt;
}

स्वयं प्रयोग करें