blob: 9a991ac4fb6cd47049d0c20d72dc3fdd7286c923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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>
|