El método DOM close() se utiliza para cerrar el flujo de salida. Se utiliza para indicar el final de la escritura en una ventana. El método close() no requiere ningún parámetro.
Sintaxis:
document.close()
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title>DOM close Method</title> <style> h1, h2{ color:green; } body { text-align:center; } </style> </head> <body> <h1>GeeksForGeeks</h1> <h2>DOM close() Method</h2> <button onclick="geeks()">Submit</button> <script> // This function is called on submit, it opens // a stream, write "PRACTICE" and then closes // the stream. function geeks() { document.open(); document.write("<h1>PRACTICE</h1>"); document.close(); } </script> </body> </html>
Producción:
Ejemplo 2: este ejemplo utiliza el método window.close para mostrar el resultado en la nueva ventana.
html
<!DOCTYPE html> <html> <head> <style> h1, h2 { color:green; } body { text-align:center; } </style> </head> <body> <h1>GeeksForGeeks</h1> <h2>DOM close() Method</h2> <button onclick="geeks()">Submit</button> <script> // This function is called on submit, it opens // a new window and a stream, write "PRACTICE" and // then closes the stream. function geeks() { var gfg = window.open(); gfg.document.open(); gfg.document.write("<h1>PRACTICE</h1>"); gfg.document.close(); } </script> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el método DOM close() se enumeran a continuación:
- Google cromo 64
- Borde 12
- explorador de Internet 4
- Firefox 1
- Ópera 51
- Safari 11
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA