La propiedad Window self() se utiliza para devolver la ventana actual. Generalmente se usa con fines de comparación al usar otras funciones como top().
Es una propiedad de solo lectura y devuelve una referencia al propio objeto Ventana.
Sintaxis:
window.self
Valor de retorno: Referencia de retorno del objeto Ventana.
El siguiente programa ilustra la propiedad Window self():
Uso de la propiedad Window self() para compararla con la propiedad window top().
html
<!DOCTYPE> <html> <head> <title> Window self() property in HTML </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Window self() 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 self( ) 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