blob: 20ddb639f52193d094d91a90248627c55915651d (
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
|
---
title: GlobalEventHandlers.onclose
slug: Web/API/GlobalEventHandlers/onclose
tags:
- Propiedad
- Referencia
translation_of: Web/API/GlobalEventHandlers/onclose
---
<div>{{ApiRef("HTML DOM")}}</div>
<p>Un gestor de eventos para los eventos de cerrar enviados a la ventana. (No disponible con Firefox 2 o Safari)</p>
<h2 id="Sintaxis">Sintaxis</h2>
<pre class="syntaxbox">window.onclose = funcRef;
</pre>
<h3 id="Parámetros">Parámetros</h3>
<ul>
<li><code>funcRef</code> es una referencia a una función.</li>
</ul>
<h2 id="Ejemplo">Ejemplo</h2>
<pre class="brush: js">window.onclose = resetThatServerThing;
</pre>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">Especificación</th>
<th scope="col">Estado</th>
<th scope="col">Comentario</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-onclose','onclose')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_con_Navegadores">Compatibilidad con Navegadores</h2>
<div>
<div class="hidden">La tabla de compatibilidad en esta pagina es generada de datos estructurados. Si te gustaría contribuir a los datos, por favor haz check out de <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> y envianos una petición pull.</div>
<p>{{Compat("api.GlobalEventHandlers.onclose")}}</p>
</div>
|