Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/08/2009, 05:40
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 17 años, 10 meses
Puntos: 126
Respuesta: Llamada metodo desde boton

Hola

Un ejemplo rápido, a ver si te es útil

Código javascript:
Ver original
  1. function activaBoton(c){
  2. document.getElementById("boton").disabled = !c.checked;
  3. }

Código html:
Ver original
  1. <input type="checkbox" value="1" onclick="activaBoton(this)" /><br />
  2. <input type="checkbox" value="2" onclick="activaBoton(this)" /><br />
  3. <input type="checkbox" value="3" onclick="activaBoton(this)" /><br />
  4. <input type="checkbox" value="4" onclick="activaBoton(this)" /><br />
  5. <input type="button" id="boton" value="Enviar" disabled="false" />

Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />