aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/window/back/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/window/back/index.md')
-rw-r--r--files/fr/web/api/window/back/index.md59
1 files changed, 59 insertions, 0 deletions
diff --git a/files/fr/web/api/window/back/index.md b/files/fr/web/api/window/back/index.md
new file mode 100644
index 0000000000..9743d49f37
--- /dev/null
+++ b/files/fr/web/api/window/back/index.md
@@ -0,0 +1,59 @@
+---
+title: Window.back()
+slug: Web/API/Window/back
+tags:
+ - API
+ - Firefox
+ - Gecko
+ - HTML DOM
+ - Méthode
+ - Non-standard
+ - Obsolete
+ - Window
+ - back
+translation_of: Web/API/Window/back
+---
+<div>{{APIRef}}{{ Non-standard_header() }}{{deprecated_header}}</div>
+
+<p>La méthode obsolète et non standard <code>back()</code> sur l'objet {{domxref("window")}} renvoie la fenêtre à l'élément précédent de l'historique. Il s'agissait d'une méthode spécifique à Firefox et a été supprimée dans Firefox 31.</p>
+
+<div class="blockIndicator note">
+<p><strong>Note:</strong> Utilisez plutôt la méthode standard {{domxref("history.back")}}.</p>
+</div>
+
+<h2 id="Syntax">Syntaxe</h2>
+
+<pre class="syntaxbox">window.back();</pre>
+
+<h3 id="Paramètres">Paramètres</h3>
+
+<p>Aucun.</p>
+
+<h3 id="Valeur_de_retour">Valeur de retour</h3>
+
+<p><code>undefined</code>.</p>
+
+<h2 id="Exemple">Exemple</h2>
+
+<p>Cet exemple simple gère un clic sur un bouton "Retour" en rappelant <code>back()</code>.</p>
+
+<pre class="brush:js">function boutonRetour() {
+ if (peutRevenirEnArriere) {
+ window.back();
+ }
+}</pre>
+
+<h2 id="Spécification">Spécification</h2>
+
+<p>Cela ne fait partie d'aucune spécification.</p>
+
+<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
+
+<p>Cette méthode non standard n'a été implémentée que dans Firefox et a été supprimée dans Firefox 31.</p>
+
+<h2 id="Voir_également">Voir également</h2>
+
+<ul>
+ <li>{{domxref("History.back()")}}</li>
+ <li>{{domxref("History.forward()")}}</li>
+</ul>