节点:ownerDocument 属性
只读 ownerDocument
属性是 Node
接口的属性,它返回节点的顶级文档对象。
值
一个 Document
,它是所有子节点创建的顶级对象。
如果此属性用于本身是文档的节点,则其值为 null
。
示例
js
// Given a node "p", get the top-level HTML
// child of the document object
const d = p.ownerDocument;
const html = d.documentElement;
规范
规范 |
---|
DOM 标准 # ref-for-dom-node-ownerdocument① |
浏览器兼容性
BCD 表仅在启用了 JavaScript 的浏览器中加载。