diff options
Diffstat (limited to 'files/it/web/api/window/defaultstatus/index.html')
-rw-r--r-- | files/it/web/api/window/defaultstatus/index.html | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/files/it/web/api/window/defaultstatus/index.html b/files/it/web/api/window/defaultstatus/index.html deleted file mode 100644 index 5212fabcd7..0000000000 --- a/files/it/web/api/window/defaultstatus/index.html +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Window.defaultStatus -slug: Web/API/Window/defaultstatus -translation_of: Web/API/Window/defaultStatus ---- -<div>{{ApiRef()}}</div> - -<p>Legge o imposta il testo predefinito della barra di stato della finestra a cui si riferisce l'oggetto <code>window</code>.</p> - -<h2 id="Sintassi" name="Sintassi">Sintassi</h2> - -<pre class="eval"><i>messaggio</i> = window.defaultStatus -window.defaultStatus = -<i>messaggio</i> -</pre> - -<h3 id="Parameters" name="Parameters">Parameters</h3> - -<ul> - <li><code>messaggio</code> è una stringa che contiene il testo che deve apparire nella barra di stato.</li> -</ul> - -<h2 id="Esempio" name="Esempio">Esempio</h2> - -<pre><html> - <body onload="window.defaultStatus='ciao!';"/> - <button onclick="window.confirm('Sei sicuro di volertene andare?');">chiudi</button> - </body> -</htm> -</pre> - -<h2 id="Note" name="Note">Note</h2> - -<p>Per impostare lo stato della finestra dopo che questa si è aperta, si può utilizzare <a href="it/DOM/window.status">window.status</a>.</p> - -<h2 id="Specifiche" name="Specifiche">Specifiche</h2> - -<p>DOM Level 0. Non è parte di alcuno standard.</p> |