Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html> <body> <h2>Eventos JavaScript</h2> <script> function ejecutaEventoOnclick(){ x = 30 window.alert(x) window.document.bgColor = 'red' } </script> <form> <input type=button value=Pulsame onclick="ejecutaEventoOnclick()"> </form> </body> </html>