Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html> <head> <title>Ejemplo button</title> </head> <body> <script language= "javascript" type= "text/javascript"> function Mostrar(boton) { alert('Ha hecho clic sobre el botón: ' + boton.name+', de valor: '+boton.value); return true; } </script> <form name="formulario"> Un botón: <input type="button" name="Boton1" value="El botón 1" OnClick="Mostrar(this);"><br><br> Un botón: <input type="button" name="Boton2" value="El botón 2" OnClick="Mostrar(this);"><br><br> Un botón: <input type="button" name="Boton3" value="El botón 3" OnClick="Mostrar(this);"><br> </form> </body> </html>