diff options
Diffstat (limited to 'files/fr/web/api/window/defaultstatus/index.html')
-rw-r--r-- | files/fr/web/api/window/defaultstatus/index.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/files/fr/web/api/window/defaultstatus/index.html b/files/fr/web/api/window/defaultstatus/index.html new file mode 100644 index 0000000000..9a991ac4fb --- /dev/null +++ b/files/fr/web/api/window/defaultstatus/index.html @@ -0,0 +1,52 @@ +--- +title: Window.defaultStatus +slug: Web/API/Window/defaultStatus +tags: + - API + - HTML DOM + - NeedsCompatTable + - NeedsExample + - NeedsMarkupWork + - NeedsSpecTable + - Obsolete + - Propriété + - Reference + - Window +translation_of: Web/API/Window/defaultStatus +--- +<p>{{ obsolete_header(23) }}</p> + +<p>{{ APIRef() }}</p> + +<h2 id="Summary" name="Summary">Résumé</h2> + +<p>Obtient / définit le texte de la barre d'état pour la fenêtre donnée.</p> + +<h2 id="Syntax" name="Syntax">Syntaxe</h2> + +<pre class="eval notranslate"><em>var sMsg</em> = window.defaultStatus; +window.defaultStatus = <em>sMsg;</em> +</pre> + +<h3 id="Parameters" name="Parameters">Paramètres</h3> + +<ul> + <li><code>sMsg</code> est une chaîne contenant le texte à afficher par défaut dans la barre d'état.</li> +</ul> + +<h2 id="Example" name="Example">Exemple</h2> + +<pre class="notranslate"><html> + <body onload="window.defaultStatus='salut!';"/> + <button onclick="window.confirm('Êtes-vous sûr de vouloir quitter?');">confirmer</button> + </body> +</html> +</pre> + +<h2 id="Notes" name="Notes">Notes</h2> + +<p>Pour définir le statut une fois la fenêtre ouverte, utilisez {{domxref("window.status")}}.</p> + +<h2 id="Specification" name="Specification">Spécification</h2> + +<p>HTML5</p> |