La propiedad principal de la ventana HTML DOM devuelve la ventana principal de la ventana actual. Es una propiedad de sólo lectura . Si una ventana no tiene un padre, entonces se refiere a sí misma.
Sintaxis:
window.parent
Valor devuelto:
- Objeto de ventana principal de la ventana actual. Si no hay una ventana principal, se refiere a sí misma.
Ejemplo: Devolver ventana principal usando alerta.
html
<!DOCTYPE html> <html> <head> <title> HTML | DOM Window parent Property </title> </head> <body> <p> PRESS ON BUTTON TO GET THE PARENT LOCATION OF CURRENT WINDOW. </p> <button onclick="myFunction()"> PRESS </button> <script> function myFunction() { // An alert of parent window. alert(window.parent.location); } </script> </body> </html>
Producción:
Antes de hacer clic:
Después de hacer clic:
Navegadores compatibles: los navegadores compatibles con la propiedad principal de la ventana DOM se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Internet Explorer 9 y superior
- Firefox 1 y superior
- Ópera 3 y superior
- Safari 1.3 y superior
Publicación traducida automáticamente
Artículo escrito por AkshayGulati y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA