XML DOM ownerDocument 属性
XML基础 2023-08-13 13:32:59小码哥的IT人生shichen
XML DOM ownerDocument 属性
定义和用法
ownerDocument 属性返回选定的元素所属的文档对象。
语法:
elementNode.ownerDocument
实例
在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()。
下面的代码片段获取 "books.xml" 中第一个 <title> 元素的属主文档的名称和节点类型:
xmlDoc=loadXMLDoc("books.xml");
var x=xmlDoc.getElementsByTagName("title")[0];
x=x.ownerDocument
;
document.write("Nodename: " + x.nodeName);
document.write(" (nodetype: " + x.nodeType + ")");
以上代码的输出:
Nodename: #document (nodetype: 9)
TIY
完整实例【ownerDocument - 获取节点的属主文档】:
<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/demo/example/xdom/books.xml");
var x=xmlDoc.getElementsByTagName("title")[0].ownerDocument;
document.write("Nodename: " + x.nodeName);
document.write(" (nodetype: " + x.nodeType + ")");
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html