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 + ")"
}

亲自试一试