blob: 3043194293a00ab083857d69e76a2fc2f4c8f60c (
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
|
---
title: Window.print()
slug: Web/API/Window/print
translation_of: Web/API/Window/print
---
<p>{{ ApiRef() }}</p>
<p>Öffnet den Dialog zum Drucken des aktuellen Dokuments.</p>
<p>In den meisten Browsern wird die Methode nicht ausgeführt, sofern bereits ein Druck-Dialog geöffnet ist.</p>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<pre class="eval">window.print()
</pre>
<h2 id="Specification" name="Specification">Anmerkungen</h2>
<p>Seit Chrome Version {{CompatChrome(46.0)}} wird diese Methode innerhalb eines {{htmlelement("iframe")}} Elements blockiert, solange kein sandbox Attribut mit dem Wert <code>allow-modal</code> gesetzt ist.</p>
<h2 id="Specification" name="Specification">Spezifikation</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentare</th>
</tr>
<tr>
<td>{{SpecName('HTML5 Web application', '#dom-print', 'print()')}}</td>
<td>{{Spec2('HTML5 Web application')}}</td>
<td>Erste Definition.</td>
</tr>
</tbody>
</table>
<h2 id="Browserkompatibilität">Browserkompatibilität</h2>
<p>{{Compat("api.Window.print")}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li><a href="/en/Printing" title="en/Printing">Printing</a></li>
<li>{{ domxref("window.onbeforeprint") }}</li>
<li>{{ domxref("window.onafterprint") }}</li>
</ul>
<p>{{ languages( { "ja": "ja/DOM/window.print", "it": "it/DOM/window.print" , "zh-cn": "zh-cn/DOM/window.print" } ) }}</p>
|