La propiedad de nombre de ventana se utiliza para establecer o devolver el nombre de una ventana. Generalmente se utiliza para modificar el nombre de una ventana que se ha creado en el pasado. Devuelve una string que representa el nombre de la ventana.
Sintaxis:
window.name
Valor devuelto: Devuelve un valor de string que representa el nombre de la ventana.
El siguiente programa ilustra la Propiedad del nombre de la ventana:
Devolver el nombre de una ventana.
html
<!DOCTYPE html> <html> <head> <title> Window name Property in HTML </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Window name Property</h2> <p> For returning the name of the window, double click the "Check Name" button: </p> <button ondblclick="fname()">Check Name</button> <!--window.open() defines the name of the window --> <!-- w.name property print the name of that window --> <script> function fname() { var w = window.open("","My Window", "width=400, height=400"); w.document.write("The name of the window is : " + w.name); } </script> </body> </html>
Producción:
Después de hacer clic en el botón
Navegadores compatibles: el navegador compatible con HTML | Propiedad de nombre de ventana 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 1 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