Hola
Un ejemplo rápido, a ver si te es útil
Código javascript
:
Ver originalfunction activaBoton(c){
document.getElementById("boton").disabled = !c.checked;
}
Código html:
Ver original<input type="checkbox" value="1" onclick="activaBoton(this)" /><br /> <input type="checkbox" value="2" onclick="activaBoton(this)" /><br /> <input type="checkbox" value="3" onclick="activaBoton(this)" /><br /> <input type="checkbox" value="4" onclick="activaBoton(this)" /><br /> <input type="button" id="boton" value="Enviar" disabled="false" />
Suerte