La propiedad Window top() se utiliza para devolver la ventana del navegador superior de una ventana actual. Es una propiedad de solo lectura y devuelve una referencia a la ventana superior en la jerarquía de ventanas.
Sintaxis:
window.top
Valor devuelto: Devuelve la referencia de la ventana superior en la jerarquía de ventanas.
El programa a continuación ilustra la propiedad Window top():
Comprobación de si la ventana es la ventana superior del navegador o no.
html
<!DOCTYPE> <html> <head> <title> Window top() property in HTML </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Window top() Property</h2> <p> For checking whether the window is the topmost window or not, double click the "Check Top Window" button: </p> <button ondblclick="Window()"> Check Top Window </button> <p id="MyWindow"></p> <script> function Window() { if (window.top = window.self) { document.getElementById("MyWindow").innerHTML = "This window is the topmost window."; } else { document.getElementById("demo").innerHTML = "This window is not the topmost window."; } } </script> </body> </html>
Producción:
Después de hacer clic en el botón
Navegadores compatibles: los navegadores compatibles con la propiedad Window top( ) se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Internet Explorer 4 y superior
- Firefox 1 y superior
- Ópera 12.1 y superior
- Safari 3 y superior
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA