Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.document

概要

window に含まれる document への参照を返します。

注記: Firefox 3 は、ウィンドウのドキュメントに対するセキュリティを変更しています。そのため、ウィンドウが存在するドメインからのみドキュメントにアクセスすることができます。この変更はいくつかの既存のサイトに支障をもたらすかもしれませんが、これは Firefox 3 と Internet Explorer 7 の両方で行われた変更であり、セキュリティの向上をもたらすものです。

構文

doc = window.document 

引数

  • doc : document オブジェクトへの参照

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

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

</body>
</html>

仕様

仕様 状態 コメント
WHATWG HTML Living Standard
Window.document の定義
現行の標準
HTML5
Window.document の定義
勧告

ドキュメントのタグと貢献者

 このページの貢献者: momdo, teoli, jsx, ethertank, Potappo
 最終更新者: momdo,