blob: 9273208572e326a3ec806136d10e11928ee9446f (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
---
title: WindowEventHandlers.onafterprint
slug: Web/API/WindowEventHandlers/onafterprint
translation_of: Web/API/WindowEventHandlers/onafterprint
---
<div>{{ApiRef}}</div>
<div>Die Eigenschaft WindowEventHandlers.onafterprint definiert und gibt den {{event("onafterprint")}} {{event("Event_handlers")}} für das aktuelle Window aus.</div>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox"><em>window</em>.onafterprint = <em>event handling code</em>
</pre>
<h2 id="Beschreibung">Beschreibung</h2>
<p>Manche Browser (inklusive Firefox 6 und neuer, Internet Explorer) senden <code>beforeprint </code>und <code>afterprint</code> Events um zu bestimmen, ob ein Druckvorgang stattgefunden hat. Diese Funktion kann genutzt werden um das User-Interface während des Druckvorgangs anzupassen (z.B das Ausblenden von User-Interface Elementen während des Druckvorgangs).</p>
<p>Das <code>afterprint E</code>vent wird ausgelöst nachdem der Nutzer gedruckt hat oder den den Druck abgebrochen hat.</p>
<h2 id="Spezifikation">Spezifikation</h2>
<p>Nicht Teil einer Spezifikation.</p>
<h2 id="Browserkompatbilität">Browserkompatbilität</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{CompatNo}}</td>
<td>6.0</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
</tbody>
</table>
</div>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{domxref("window.print")}}</li>
<li>{{domxref("window.onbeforeprint")}}</li>
<li><a href="/en-US/docs/">Drucken</a></li>
<li>In Webkitbrowsern kann eine equivalentes Ergebnis mit <code>matchMedia('print')</code> erreicht werden.</li>
<li>
<pre><code>var mediaQueryList = window.matchMedia('print');
mediaQueryList.addListener(function(mql) {
<span class="Apple-tab-span" style="white-space: pre;"> </span>if (!mql.matches) {
<span class="Apple-tab-span" style="white-space: pre;"> </span>console.log('onafterprint');
<span class="Apple-tab-span" style="white-space: pre;"> </span>};
});</code>
</pre>
</li>
</ul>
<div class="grammarly-disable-indicator"> </div>
|