aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/window/load_event/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/window/load_event/index.html')
-rw-r--r--files/it/web/api/window/load_event/index.html124
1 files changed, 0 insertions, 124 deletions
diff --git a/files/it/web/api/window/load_event/index.html b/files/it/web/api/window/load_event/index.html
deleted file mode 100644
index 145b79e867..0000000000
--- a/files/it/web/api/window/load_event/index.html
+++ /dev/null
@@ -1,124 +0,0 @@
----
-title: load
-slug: Web/API/Window/load_event
-tags:
- - CompatibilitàBrowser
- - Evento
-translation_of: Web/API/Window/load_event
-original_slug: Web/Events/load
----
-<p>L'evento <strong><code>load</code></strong> si attiva quando una risorsa e le sue risorse dipendenti hanno completato il caricamento.</p>
-
-<h2 id="Esempi">Esempi</h2>
-
-<h3 class="brush: html" id="Window">Window</h3>
-
-<pre class="brush: html">&lt;script&gt;
- window.addEventListener("load", function(event) {
- console.log("Tutte le risorse hanno terminato il caricamento!");
- });
-&lt;/script&gt;</pre>
-
-<h3 class="brush: html" id="L'elemento_script">L'elemento <code>script</code></h3>
-
-<pre class="brush: html">&lt;script&gt;
- var script = document.createElement("script");
- script.addEventListener("load", function(event) {
- console.log("Lo script ha terminato il caricamento e l'esecuzione");
- });
- script.src = "http://example.com/example.js";
- script.async = true;
- document.getElementsByTagName("script")[0].parentNode.appendChild(script);
-&lt;/script&gt;</pre>
-
-<h2 id="Info_generali">Info generali</h2>
-
-<dl>
- <dt style="float: left; text-align: right; width: 120px;">Specifica</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;">Interfaccia</dt>
- <dd style="margin: 0 0 0 120px;">UIEvent</dd>
- <dt style="float: left; text-align: right; width: 120px;">Bubbles</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;">Target</dt>
- <dd style="margin: 0 0 0 120px;">Window, Document, Element</dd>
- <dt style="float: left; text-align: right; width: 120px;">Azione predefinita</dt>
- <dd style="margin: 0 0 0 120px;">Nessuna.</dd>
-</dl>
-
-<h2 id="Proprietà">Proprietà</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Proprietà</th>
- <th scope="col">Tipo</th>
- <th scope="col">Descrizione</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td><code>target</code> {{readonlyInline}}</td>
- <td><code>{{domxref("EventTarget")}}</code></td>
- <td>Il target dell'evento (l'obiettivo più in alto nell'albero del DOM).</td>
- </tr>
- <tr>
- <td><code>type</code> {{readonlyInline}}</td>
- <td><code>{{domxref("DOMString")}}</code></td>
- <td>Il tipo di evento.</td>
- </tr>
- <tr>
- <td><code>bubbles</code> {{readonlyInline}}</td>
- <td><code>{{domxref("Boolean")}}</code></td>
- <td>Se l'evento normalmente bolle o no.</td>
- </tr>
- <tr>
- <td><code>cancelable</code> {{readonlyInline}}</td>
- <td><code>{{domxref("Boolean")}}</code></td>
- <td>Se l'evento è cancellabile o meno.</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="Specifiche">Specifiche</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specifica</th>
- <th scope="col">Stato</th>
- <th scope="col">Commento</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>Questo collega alla sezione nei passaggi che vengono eseguiti alla fine del caricamento di un documento. gli eventi di "caricamento" vengono attivati anche a molti elementi. E nota che ci sono molti punti nelle specifiche che fanno riferimento a cose che possono "<a href="https://html.spec.whatwg.org/multipage/parsing.html#delay-the-load-event">ritardare l'evento load</a>".</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Eventi_correlati">Eventi correlati</h2>
-
-<ul>
- <li>{{event("DOMContentLoaded")}}</li>
- <li>{{event("readystatechange")}}</li>
- <li>{{event("beforeunload")}}</li>
- <li>{{event("unload")}}</li>
-</ul>