La propiedad DOM defaultView en HTML se usa para devolver el objeto de ventana del documento. El objeto ventana son las ventanas abiertas en el navegador.
Sintaxis:
document.defaultView
Valor de retorno: se utiliza para devolver el objeto de ventana actual.
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title> DOM defaultView Property </title> </head> <body style = "text-align:center"> <h1 style = "color:green">GeeksForGeeks</h1> <h2>DOM defaultView Property </h2> <button onclick = "geeks()">Submit</button> <p id="sudo"></p> <script> function geeks() { var doc = document.defaultView; document.getElementById("sudo").innerHTML = doc; } </script> </body> </html>
Salida: Antes Haga clic en el botón:
Después de hacer clic en el botón:
Ejemplo 2: este ejemplo se utiliza para devolver el ancho y el alto de Windows.
html
<!DOCTYPE html> <html> <head> <title> DOM defaultView Property </title> </head> <body> <center> <h1 style = "color:green;">GeeksForGeeks</h1> <h2>DOM defaultView Property </h2> <button onclick="Geeks()">Submit</button> <p id="sudo"></p> <!-- script to find window size --> <script> function Geeks() { var def_view = document.defaultView; var width = def_view.innerWidth; var height = def_view.innerHeight; document.getElementById("sudo").innerHTML = "Width: " + width + "<br>Height: " + height; } </script> </center> </body> </html>
Salida: Antes Haga clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad DOM defaultView se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Internet Explorer 9 y superior
- Firefox 1 y superior
- Ópera 12.1 y superior
- Safari 1 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA