Formularios y Eventos.

PROBLEMA

  1. Crear un formulario con tres botones con las leyendas "1", "2" y "3". Mostrar un mensaje indicando qué botón se presionó.
Solución
Problema 1.


<html>
<head>
</head>
<body>

<script type="text/javascript">
  function presion1()
  {
    alert('Se presionó el botón 1');
  }

  function presion2()
  {
    alert('Se presionó el botón 2');
  }

  function presion3()
  {
    alert('Se presionó el botón 3');
  }
</script>


<form>
  <input type="button" onClick="presion1()" value="Boton 1">
  <input type="button" onClick="presion2()" value="Boton 2">
  <input type="button" onClick="presion3()" value="Boton 3">
</form>
</body>
</html>
     


Retornar al menu