HTML DOM ownerDocument 属性
返回元素的根元素:
<p id="demo">单击按钮获取li元素的根文字的节点类型</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var x = document.getElementById("demo"); x.innerHTML = x.ownerDocument.nodeType; } </script>
定义和用法
ownerDocument 可返回某元素的根元素。
HTML中, HTML 文档本身是元素的根元素。
越多更多的文档对象请参考我们的 文档对象参考手册。
浏览器支持
所有主要浏览器都支持 ownerDocument 属性
语法
node.ownerDocument
技术细节
返回值: | 节点的所有文档,如文档对象。 |
---|---|
DOM 版本 | Core Level 2 Node Object |