--- title: window.document slug: Web/API/Window/document translation_of: Web/API/Window/document ---

{{ ApiRef() }}

window.document返回当前窗口内的文档节点({{domxref("document")}})

注: 从Firefox 3和IE7开始,访问其他页面内的文档节点会受到同源策略的影响.

语法

doc = window.document

参数

例子

<!DOCTYPE html>
<html>
<head>
   <title>Hello, World!</title>
</head>
<body>

<script type="text/javascript">
   var doc = window.document;
   alert( doc.title);    // 弹出: Hello, World!
</script>

</body>
</html>

规范

Specification Status Comment
{{SpecName('HTML WHATWG', '#dom-document-2', 'Window.document')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', 'browsers.html#dom-document-0', 'Window.document')}} {{Spec2('HTML5 W3C')}}

浏览器兼容性

{{Compat("api.Window.document")}}