blob: e07fb5d82067bf9e198271770c081fa12cdafbf6 (
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
tags:
- API
- BesoinDeCompatibilitéAvecLeNavigateur
- BesoinDeCompatibilitéAvecLeNavigateurMobile
- DOM
- Méthode
- Reference
- Window
translation_of: Web/API/Window/print
---
<p>{{ ApiRef() }}</p>
<p>Ouvre la fenêtre de dialogue d'impression pour imprimer le document courant. </p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="eval">window.print()
</pre>
<h2 id="Specification">Notes</h2>
<p>Disponible à partir de Chrome {{CompatChrome(45.0)}}, cette méthode est bloquée à l'intérieur d'une balise {{htmlelement("iframe")}} sauf si son attribut sandbox a la valeur allow-modal.</p>
<h2 id="Specification">Spécification</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
<tr>
<td>{{SpecName('HTML5 Web application', '#dom-print', 'print()')}}</td>
<td>{{Spec2('HTML5 Web application')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Voir_également">Voir également</h2>
<ul>
<li><a href="/en/Printing">Printing</a></li>
<li>{{ domxref("window.onbeforeprint") }}</li>
<li>{{ domxref("window.onafterprint") }}</li>
</ul>
|