XML DOM ownerDocument गुण
परिभाषा और उपयोग
ownerDocument
प्रतियोगिता वाला एलीमेंट का मालिक डॉक्यूमेंट वापस देता है。
व्याकरण
elementNode.ownerDocument
उदाहरण
इस कोड का उद्देश्य "books.xml" को xmlDoc में लोड करना है, और पहले <title> एलीमेंट के मालिक डॉक्यूमेंट से नाम और नोड क़िस्म प्राप्त करना है:
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 xmlDoc = xml.responseXML; var x = xmlDoc.getElementsByTagName("title")[0].ownerDocument; document.getElementById("demo").innerHTML = "Nodename: " + x.nodeName + " (nodetype: " + x.nodeType + ")" }