--- title: Node.ownerDocument slug: Web/API/Node/ownerDocument tags: - API - DOM - Gecko - Property - 属性 translation_of: Web/API/Node/ownerDocument ---
{{ APIRef("DOM")}}

Node.ownerDocument 只读属性会返回当前节点的顶层的 document 对象。

语法

document = node.ownerDocument

例子

// 得到p元素所在文档的HTML节点
d = p.ownerDocument;
html = d.documentElement;

注意

被此属性返回的 document 对象是在实际的HTML文档中的所有子节点所属的主对象。如果在文档节点自身上使用此属性,则结果是null

规范

Specification Status Comment
{{SpecName("DOM4", "#dom-node-ownerdocument", "Node.ownerDocument")}} {{Spec2("DOM4")}}  
{{SpecName("DOM3 Core", "core.html#node-ownerDoc", "Node.ownerDocument")}} {{Spec2("DOM3 Core")}} No change
{{SpecName("DOM2 Core", "core.html#node-ownerDoc", "Node.ownerDocument")}} {{Spec2("DOM2 Core")}} Initial definition

浏览器兼容性

{{Compat("api.Node.ownerDocument")}}