blob: 9da27c563902aff9f8a5d6ce18d70e5beba3f2ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
---
title: document.defaultView
slug: Web/API/Document/defaultView
tags:
- API
- Document
- HTML DOM
- Property
- Reference
translation_of: Web/API/Document/defaultView
---
<div>{{ApiRef}}</div>
<p>ブラウザーにおいて、<strong><code>document.defaultView</code></strong> はドキュメントに関連付けられている {{domxref("window")}} オブジェクトを返します。もし存在しない場合は <code>null</code> を返します。</p>
<h2 id="例">例</h2>
<pre class="syntaxbox">var <var>win</var> = document.defaultView;
</pre>
<p>このプロパティは読み取り専用です。</p>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様</th>
<th scope="col">状態</th>
<th scope="col">コメント</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-document-defaultview', 'Document.defaultView')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>変更なし</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'browsers.html#dom-document-defaultview', 'Document.defaultView')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>初期の定義</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザー互換性">ブラウザー互換性</h2>
<p>{{Compat("api.Document.defaultView")}}</p>
|