XML DOM createElement() मेथड

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

createElement() यह एलिमेंट नोड बनाता है。

यह एलिमेंट ऑब्जेक्ट वापस देता है。

व्याकरण

createElement(name)
पैरामीटर वर्णन
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, 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;
}

स्वयं की जाँच करें