Tema: Validar edad
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/06/2002, 15:05
unKnown
Usuario no validado
 
Fecha de Ingreso: julio-2001
Mensajes: 766
Antigüedad: 22 años, 9 meses
Puntos: 0
Re: Validar edad

aqui hay un ejemplo rapido

Código:
 

<script language="javascript">
//for(unknown){[email protected]};
function valida(f)
        {
         var cont=f.edad.value
         if(isNaN(cont)||cont.indexOf(" ")!=-1||cont<7||cont>100)
            {
             alert("ERROR !!!!!")
             return false
            }
         else
             return true
        }
</script>

<form name="formulario" action="edad.jsp" onsubmit="return valida(this)">
<input name="edad" type="text" value="">
<input type="submit">
</form>