XML DOM ownerDocument 属性
XML基础 2023-08-12 18:13:10小码哥的IT人生shichen
XML DOM ownerDocument 属性
定义和用法
ownerDocument 可返回某元素的根元素。
语法:
nodeObject.ownerDocument
实例
在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()。
下面的代码片段可XML文档中首个 <title> 节点的根元素:
xmlDoc=loadXMLDoc("books.xml");
var x=xmlDoc.getElementsByTagName("title")[0].ownerDocument
;
document.write("Nodename: " + x.nodeName);
document.write(" (nodetype: " + x.nodeType + ")");
输出:
Nodename: #document (nodetype: 9)
TIY
完整实例【ownerDocument - 取得某个节点的根元素(document对象)】:
<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