blob: 519fce7b1b0a0bd589d9698c6caee5986c39bd9c (
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
50
51
52
53
54
55
56
57
58
59
|
---
title: Document.width
slug: Web/API/Document/width
tags:
- API
- Document
- HTML DOM
- Obsolete
- Reference
- width
- プロパティ
translation_of: Web/API/Document/width
---
<div>{{APIRef("DOM")}} {{Obsolete_header}}</div>
<div class="note">
<p><strong>メモ:</strong> {{Gecko("6.0")}} より <code>document.width</code> には対応しなくなりました。代わりに <code>document.body.clientWidth</code> を使用してください。 {{domxref("element.clientWidth")}} を参照して下さい。</p>
</div>
<p>現在の文書の {{HTMLElement("body")}} 要素の現在の幅をピクセル値で返します。</p>
<p>Internet Explorer では対応していません。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>pixels</var> = document.width;
</pre>
<h2 id="Example" name="Example">例</h2>
<pre class="brush:js">function init() {
alert("文書の幅は " + document.width + " ピクセルです。");
}
</pre>
<h2 id="Alternatives" name="Alternatives">代替策</h2>
<pre class="syntaxbox">document.body.clientWidth /* <body> の幅 */
document.documentElement.clientWidth /* <html> の幅 */
window.innerWidth /* window の内寸幅 */
</pre>
<h2 id="Specification" name="Specification">仕様書</h2>
<p>HTML5</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
<p>{{Compat("api.Document.width")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("document.height")}}</li>
<li>{{domxref("Element.clientWidth")}}</li>
<li>{{domxref("Element.scrollWidth")}}</li>
</ul>
|