aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/document/width/index.html
blob: 5fc3e1c80a969881ecc47f3e90745db3505a211a (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
---
title: Document.width
slug: Web/API/Document/width
translation_of: Web/API/Document/width
---
<div>{{APIRef("DOM")}} {{Obsolete_header}}</div>

<div class="note">
<p><strong>Note:</strong> Starting in {{Gecko("6.0")}},<code> document.width </code>is no longer supported. Instead, use <code>document.body.clientWidth</code>. See {{domxref("element.clientWidth")}}.</p>
</div>

<p>Gibt die Breite des {{HTMLElement("body")}} Elements des aktuellen Dokuments in Pixeln zurück.</p>

<p>Wird nicht vom Internet Explorer unterstützt.</p>

<h2 id="Syntax" name="Syntax">Syntax</h2>

<pre class="syntaxbox"><em>pixels</em> = document.width;
</pre>

<h2 id="Example" name="Example">Beispiel</h2>

<pre class="brush:js">function init() {
    alert("Die Breite des Dokuments beträgt " + document.width + " Pixel.");
}
</pre>

<h2 id="Alternatives" name="Alternatives">Alternativen</h2>

<pre class="syntaxbox">document.body.clientWidth              /* Breite des &lt;body&gt; */
document.documentElement.clientWidth   /* Breite des &lt;html&gt; */
window.innerWidth                      /* Breite des Browserfensters */
</pre>

<h2 id="Specification" name="Specification">Spezifikation</h2>

<p>HTML5</p>

<h2 id="See_also" name="See_also">Siehe auch</h2>

<ul>
 <li>{{domxref("document.height")}}</li>
 <li>{{domxref("Element.clientWidth")}}</li>
 <li>{{domxref("Element.scrollWidth")}}</li>
</ul>