HTML DOM ownerDocument 属性


HTML DOM ownerDocument 属性

实例

返回元素的根元素:

document.getElementById("demo").ownerDocument;

试一试 »

定义和用法

ownerDocument 可返回某元素的根元素。

HTML中, HTML 文档本身是元素的根元素。

浏览器支持

所有主要浏览器都支持 ownerDocument 属性

语法

_node_.ownerDocument

技术细节

返回值: 节点的所有文档,如文档对象。
DOM 版本 Core Level 2 Node Object