diff options
Diffstat (limited to 'files/fr/web/api/location/reload/index.html')
-rw-r--r-- | files/fr/web/api/location/reload/index.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/files/fr/web/api/location/reload/index.html b/files/fr/web/api/location/reload/index.html new file mode 100644 index 0000000000..c825101853 --- /dev/null +++ b/files/fr/web/api/location/reload/index.html @@ -0,0 +1,61 @@ +--- +title: Location.reload() +slug: Web/API/Location/reload +tags: + - API + - JavaScript + - Location + - Méthode + - Reference +translation_of: Web/API/Location/reload +--- +<div>{{ APIRef("HTML DOM") }}</div> + +<p><span class="seoSummary">La méthode <code><strong>Location.reload()</strong></code> recharge la ressource depuis l'URL actuelle.</span></p> + +<p>Si l'action est impossible à cause d'une violation de sécurité, une {{domxref("DOMException")}} de type <code>SECURITY_ERROR</code> est lancée. Cela se produit si l'origine du script appelant est différente de l'origine de la page initialement désignée par l'objet {{domxref("Location")}}, principalement quand le script est hébergé sur un autre domaine. Voir la page <a href="/fr/docs/Web/Security/Same_origin_policy_for_JavaScript">Same-origin policy</a> pour plus d'informations.</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="syntaxbox notranslate"><em>object</em>.reload(); +</pre> + +<h2 id="Exemples">Exemples</h2> + +<pre class="brush: js notranslate">// Recharge la page actuelle +document.location.reload();</pre> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statut</th> + <th scope="col">Commentaires</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', "history.html#dom-location-reload", "Location.reload()")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>Pas de différence avec {{SpecName("HTML5 W3C")}}.</td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', "browsers.html#dom-location-reload", "Location.reload()")}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité">Compatibilité</h2> + + + +<p>{{Compat("api.Location.reload")}}</p> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>L'interface {{domxref("Location")}} à laquelle appartient cette méthode.</li> + <li>Méthodes similaires : {{domxref("Location.assign()")}} et {{domxref("Location.replace()")}}.</li> +</ul> |