diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:14 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | c05efa8d7ae464235cf83d7c0956e42dc6974103 (patch) | |
tree | 6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/windoweventhandlers/onbeforeunload/index.md | |
parent | 13a5e017558b248ee1647d4a5825f183b51f09ad (diff) | |
download | translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2 translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/windoweventhandlers/onbeforeunload/index.md')
-rw-r--r-- | files/fr/web/api/windoweventhandlers/onbeforeunload/index.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/files/fr/web/api/windoweventhandlers/onbeforeunload/index.md b/files/fr/web/api/windoweventhandlers/onbeforeunload/index.md new file mode 100644 index 0000000000..638f24c27b --- /dev/null +++ b/files/fr/web/api/windoweventhandlers/onbeforeunload/index.md @@ -0,0 +1,49 @@ +--- +title: window.onbeforeunload +slug: Web/API/WindowEventHandlers/onbeforeunload +translation_of: Web/API/WindowEventHandlers/onbeforeunload +--- +<h2 id="Sommaire">Résumé</h2> + +<p>Le gestionnaire d'événement <code><strong>WindowEventHandlers.onbeforeunload</strong></code> contient le code exécuté lorsque l'évènement {{event("beforeunload")}} est envoyé. Cet événement se déclenche lorsque la fenêtre est sur le point de recharger ses ressources.</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush: html"><element beforeunload="funcRef(event);" /></pre> + +<pre class="brush: html"><script type="text/javascript"> + window.onbeforeunload = funcRef +</script></pre> + +<ul> + <li>funcRef : Référence à une fonction appelée lorsque l'évènement se déclenche</li> +</ul> + +<h2 id="Exemple">Exemple</h2> + +<pre class="brush: js">window.onbeforeunload = function (e) { + var e = e || window.event; + + // For IE and Firefox + if (e) { + e.returnValue = 'Any string'; + } + + // For Safari + return 'Any string'; +}; +</pre> + +<h2 id="EventProperty">Propriétés de l'objet <strong>event</strong></h2> + +<pre>returnValue</pre> + +<ul> + <li>Applique ou récupère la valeur de retour de l'évènement.</li> +</ul> + +<h2 id="Spécification">Spécification</h2> + +<p>L'évènement 'onbeforeunload' a été introduit par Microsoft dans IE4 et s'est généralisé dans tous les navigateurs.</p> + +<p><a href="http://msdn.microsoft.com/en-us/library/ms536907%28VS.85%29.aspx">MSDN—onbeforeunload Event</a></p> |