Evento: change

PROBLEMA
  1. Confeccionar un formulario que muestre un checkbox que cuando se tilde active un botón (el checkbox debe mostrar un mensaje que diga : "Confirma los términos y condiciones?")
Solución
Problema 1.


<html>
<head>

<script type="text/javascript">

  addEventListener('load',inicio,false);
  
  function inicio()
  {
    document.getElementById('checkbox1').addEventListener('change',seleccion,false);
  }

  function seleccion()
  {

    if (document.getElementById('checkbox1').checked==true)
    {
      document.getElementById('boton1').disabled=false;
    } 
    else    
      document.getElementById('boton1').disabled=true;
  }

</script>

</head>
<body>
<input type="checkbox" id="checkbox1" name="checkbox1">
Confirma los términos y condiciones?
<br>
<input type="button" id="boton1" name="boton1" value="confirmar" disabled>
</body>
</html>


Retornar al menu