El método createPopup() en la ventana html se usa para crear una ventana emergente .
Sintaxis:
window.createPopup()
Ejemplo:
<html> <head> <title> DOM createPopup() Method </title> <style> h1 { color: green; } </style> </head> <head> <script type="text/javascript"> function show_popup() { var pop = window.createPopup() var popbody = pop.document.body popbody.style.backgroundColor = "lime" popbody.style.border = "solid black 1px" popbody.innerHTML = "I am the pop-up, Click outside to close." pop.show(150, 150, 200, 50, document.body) } </script> </head> <body> <center> <h1> GeeksforGeeks </h1> <button onclick="show_popup()"> pop-up! </button> </center> </body> </html>
Producción:
Nota: El método de ventana createPopup() funciona antes de Internet Explorer 11.
Navegador compatible:
- Google Chrome: NO
- MozillaFirefox: NO
- Borde: NO
- Ópera: NO
- Safari: NO
Publicación traducida automáticamente
Artículo escrito por Vijay Sirra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA