HTML DOM ownerDocument 属性
JavaScript基础 2022-06-08 11:30:17小码哥的IT人生shichen
HTML DOM ownerDocument 属性
实例
返回元素的 ownerDocument:
document.getElementById("demo").ownerDocument;
完整实例:
<!DOCTYPE html>
<html>
<body>
<p id="demo">请点击按钮来获得 <p> 元素的 ownerDocument 的节点类型。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x=document.getElementById("demo");
x.innerHTML=x.ownerDocument.nodeType;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
ownerDocument 属性以 Document 对象的形式返回节点的 owner document。
在 HTML 中,HTML 文档本身始终是元素的 ownerDocument。
请在我们的文档对象参考手册中浏览更多有关 Document 对象的内容。
浏览器支持
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
所有主流浏览器均支持 ownerDocument 属性。
语法
node.ownerDocument
技术细节
返回值: | Document 对象,节点的 owner document。 |
DOM 版本 | Core Level 2 Node Object |