PROBLEMA
-
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?")
Problema 1.
<!DOCTYPE html>
<html>
<head>
<title>Ejemplo de JavaScript</title>
<meta charset="UTF-8">
</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>
<script>
document.getElementById('checkbox1').addEventListener('change', seleccion);
function seleccion() {
if (document.getElementById('checkbox1').checked == true) {
document.getElementById('boton1').disabled = false;
} else
document.getElementById('boton1').disabled = true;
}
</script>
</body>
</html>