Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/02/2010, 13:32
Avatar de hector2c
hector2c
 
Fecha de Ingreso: noviembre-2007
Ubicación: Perú - Tacna
Mensajes: 979
Antigüedad: 17 años
Puntos: 25
Pregunta Respuesta: como valido radio button con esto=>

Código PHP:
<script language="JavaScript">
    function 
obtener_valor(ctrl){
        for(
i=0;i<ctrl.length;i++)
            if(
ctrl[i].checked) return ctrl[i].value;
    }

    function 
fn_validar(valor){
        if(
obtener_valor(valor.reglas)==1)
            return 
true;
        else
            return 
false;
    }
</script> 
Código HTML:
<form name="formulario" action="javascript: alert(1);" onSubmit="return fn_validar(this);">
Acepta las reglas?
Si <input type="radio" value="1" name="reglas">
No <input type="radio" value="0" name="reglas" checked>
<input type="submit" value="Aceptar">
</form> 
esta es la fuente
__________________
blog: hector2c.wordpress.com
email: [email protected]