blob: f38e21483956ba223ff2d38f49a72f3f80d85eef (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
---
title: load
slug: Web/Events/load
tags:
- Evento
translation_of: Web/API/Window/load_event
---
<p>El evento <code>load</code> se dispara cuando un recurso y sus recursos dependientes han terminado de cargar.</p>
<p> </p>
<h2 id="Ejemplos">Ejemplos</h2>
<h3 class="brush: html" id="Window">Window</h3>
<pre class="brush: html"><script>
window.addEventListener("load", function(event) {
console.log("'Todos los recursos terminaron de cargar!");
});
</script></pre>
<h3 id="Elemento_script">Elemento <code>script</code></h3>
<pre class="brush: html"><script>
var script = document.createElement("script");
script.addEventListener("load", function(event) {
console.log("Script terminó de cargarse y ejecutarse");
});
script.src = "http://example.com/example.js";
script.async = true;
document.getElementsByTagName("script")[0].parentNode.appendChild(script);
</script></pre>
<h2 id="Información_general">Información general</h2>
<dl>
<dt style="float: left; text-align: right; width: 120px;">Especificación</dt>
<dd style="margin: 0 0 0 120px;"><a class="external" href="http://www.w3.org/TR/DOM-Level-3-Events/#event-type-load">DOM L3</a></dd>
<dt style="float: left; text-align: right; width: 120px;">Interfaz</dt>
<dd style="margin: 0 0 0 120px;">UIEvent</dd>
<dt style="float: left; text-align: right; width: 120px;">Propagación</dt>
<dd style="margin: 0 0 0 120px;">No</dd>
<dt style="float: left; text-align: right; width: 120px;">Cancelable</dt>
<dd style="margin: 0 0 0 120px;">No</dd>
<dt style="float: left; text-align: right; width: 120px;">Objetivo</dt>
<dd style="margin: 0 0 0 120px;">Window,Document,Element</dd>
<dt style="float: left; text-align: right; width: 120px;">Por defecto Acción</dt>
<dd style="margin: 0 0 0 120px;">None.</dd>
</dl>
<h2 id="Propiedades">Propiedades</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Propiedad</th>
<th scope="col">Tipo</th>
<th scope="col">Descripción</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>target</code> {{readonlyInline}}</td>
<td><code>{{domxref("EventTarget")}}</code></td>
<td>El objetivo del evento (el objetivo superior en el árbol DOM).</td>
</tr>
<tr>
<td><code>type</code> {{readonlyInline}}</td>
<td><code>{{domxref("DOMString")}}</code></td>
<td>El tipo de evento.</td>
</tr>
<tr>
<td><code>bubbles</code> {{readonlyInline}}</td>
<td><code>{{domxref("Boolean")}}</code></td>
<td>Si el elemento normalmente se propaga (bubbles) o no.</td>
</tr>
<tr>
<td><code>cancelable</code> {{readonlyInline}}</td>
<td><code>{{domxref("Boolean")}}</code></td>
<td>Si el evento es cancelable o no.</td>
</tr>
<tr>
<td><code>view</code> {{readonlyInline}}</td>
<td><code>{{domxref("WindowProxy")}}</code></td>
<td><code>{{domxref("Document.defaultView", "document.defaultView")}}</code> (<code>window</code> del documento)</td>
</tr>
<tr>
<td><code>detail</code> {{readonlyInline}}</td>
<td><code>long</code> (<code>float</code>)</td>
<td>0.</td>
</tr>
</tbody>
</table>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Especificación</th>
<th scope="col">Estado</th>
<th scope="col">Comentario</th>
</tr>
<tr>
<td>{{SpecName('UI Events', '#event-type-load', 'load')}}</td>
<td>{{Spec2('UI Events')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', 'parsing.html#the-end:event-load', 'Load event')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Esto enlaza con la sección en los pasos que se llevan a cabo al final de cargar un documento. Los eventos 'load' también se disparan a muchos elementos. Y tenga en cuenta que hay muchos lugares en la especificación que hacen referencia a cosas que pueden "<a href="https://html.spec.whatwg.org/multipage/parsing.html#delay-the-load-event">retrasar el evento de carga</a>".</td>
</tr>
</tbody>
</table>
<h2 id="Eventos_relacionados">Eventos relacionados</h2>
<ul>
<li>{{event("DOMContentLoaded")}}</li>
<li>{{event("readystatechange")}}</li>
<li>{{event("load")}}</li>
<li>{{event("beforeunload")}}</li>
<li>{{event("unload")}}</li>
</ul>
|