blob: 7ab8bdb63f8cdffd668c2eead8900dd04faa3b05 (
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
|
---
title: Window.print()
slug: Web/API/Window/print
tags:
- API
- Compatibilidad
- Compatibilidad en móviles
- DOM
- Referencia
- Window
- metodo
translation_of: Web/API/Window/print
---
<p>{{ ApiRef() }}</p>
<p>Abre el diálogo para imprimir el documento actual.</p>
<p>En la mayoría de navegadores, este método bloquea mientras el díalogo de impresión esté abierto, sin embargo, en algunas versiones recientes de Safari podría retornar de inmediato.</p>
<h2 id="Summary" name="Summary">Resumen</h2>
<p>Abre el <em>Diálogo de Impresión</em> para imprimir el documento actual.</p>
<h2 id="Syntax" name="Syntax">Sintaxis</h2>
<pre class="eval">window.print()
</pre>
<h2 id="Specification" name="Specification">Notas</h2>
<p>Empezando con Chrome {{CompatChrome(46.0)}} este método esta bloqueado dentro de un {{htmlelement("iframe")}} a menos que el atributo del contenedor tenga el valor <code>allow-modal</code>.</p>
<h2 id="Specification" name="Specification">Especificación</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Especificación</th>
<th scope="col">Estatus</th>
<th scope="col">Comentario</th>
</tr>
<tr>
<td>{{SpecName('HTML5 Web application', '#dom-print', 'print()')}}</td>
<td>{{Spec2('HTML5 Web application')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Ver_también">Ver también</h2>
<ul>
<li><a href="/en/Printing" title="en/Printing">Impresión</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>
|