La propiedad de estado de la ventana en HTML DOM se usa para establecer o devolver el texto en la barra de estado en la parte inferior del navegador.
Sintaxis:
window.status
Valor devuelto: Devuelve una string que representa el texto que se muestra en la barra de estado.
Ejemplo 1: este ejemplo utiliza la propiedad de estado de la ventana.
<!DOCTYPE html> <html> <head> <title> HTML DOM Window status Property </title> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML DOM Window status Property </h2> <p> Look the text in the statusbar displayed at the bottom of the browser </p> <!-- Script to use window status property --> <script> window.status = "GeeksforGeeks"; </script> </body> </html>
Producción:
Ejemplo 2: este ejemplo utiliza la propiedad de estado de la ventana para establecer el texto de la barra de estado.
<!DOCTYPE html> <html> <head> <title> HTML DOM Window status Property </title> <!-- Script to use window status property --> <script type="text/javascript"> function UpdateStatusBar (over) { if (over) window.status = "The mouse is over the text."; else window.status = window.defaultStatus; } function ChangeDefStatus () { window.defaultStatus = "Default Status."; } </script> </head> <body> <div onmousemove="UpdateStatusBar(true);" onmouseout="UpdateStatusBar(false);"> A message is seen on the status bar at the bottom of the page when mouse is placed over the text </div><br> <button onclick="ChangeDefStatus();"> Change default status </button> <br><br> <a href="#"> When mouse move over, the browser will display the URL </a> </body> </html>
Producción:
Navegadores compatibles: la propiedad de estado de la ventana DOM no es compatible con ningún navegador.
Publicación traducida automáticamente
Artículo escrito por kartikgoel1999 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA