Node.ownerDocument - Web API 接口参考 编辑

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

语法

document = node.ownerDocument
  • document 是当前元素的 document 对象,其是当前元素的祖先。

例子

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

注意

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

规范

SpecificationStatusComment
DOM4
Node.ownerDocument
Obsolete 
Document Object Model (DOM) Level 3 Core Specification
Node.ownerDocument
ObsoleteNo change
Document Object Model (DOM) Level 2 Core Specification
Node.ownerDocument
ObsoleteInitial definition

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support(Yes)(Yes)[1]6.0[2](Yes)(Yes)
FeatureAndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support??[1]???

[1] 从 Gecko 9.0 (Firefox 9.0 / Thunderbird 9.0 / SeaMonkey 2.6) 开始, 一个由脚本生成的DocumentType类型的节点(节点类型Node.nodeType的值为 Node.DOCUMENT_TYPE_NODE 也就是 10)的ownerDocument属性的值不再是null. 而是调用document.implementation.createDocumentType() 方法创建该节点的文档节点.

[2] http://msdn.microsoft.com/en-us/library/ie/ms534315(v=vs.85).aspx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:115 次

字数:4140

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文