El método DOM Dialog showModal() se usa para mostrar el diálogo. Se accede al elemento Dialog mediante getElementById(). Se utiliza en HTML5.
Mientras usa este método, el usuario no puede interactuar con otros elementos en la página. Para hacer que el usuario interactúe con otros elementos, use el método show().
Sintaxis:
dialogObject.showModal()
Ejemplo: Este ejemplo muestra el funcionamiento del método Dialog showModal():
<!DOCTYPE html> <html> <body> <h3> HTML | DOM Dialog showModal() Method</h3> <p>Click on the below buttons to show the dialog window.</p> <button onclick="showDialog()">Show dialog box</button> <dialog id="showDialog" style= "color:green"> Welcome to GeeksforGeeks</dialog> <script> var gfg = document.getElementById("showDialog"); function showDialog() { gfg.showModal(); } </script> </body> </html>
Salida:
antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles:
- Google Chrome 37.0
- Ópera 24.0
- Safari 6.0
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA