Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/04/2011, 08:07
Seisler
 
Fecha de Ingreso: febrero-2011
Mensajes: 83
Antigüedad: 13 años, 9 meses
Puntos: 0
Respuesta: Validar año en JavaScript (solo año)

He intentado hacer esto.

Código Javascript:
Ver original
  1. if (isNaN(document.subir.year)){
  2.             alert("Tiene que introducir un número entero en el AÑO.")
  3.             document.subir.year.focus()
  4.         return 0;
  5.  
  6.          }else{
  7.             if (document.subir.year.value.length!=4){
  8.            alert("Debe tener 4 DIGITOS.")
  9.            document.subir.year.focus()
  10.            return 0;
  11.         }
  12.      }


Que falla?