Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/12/2006, 01:51
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Re: agregar 0 en cuadro de texto

Hola Garmauco

Pon el campo del formulario así:

<input type="text" onchange = "anadir(this)" />

y utiliza este código:
Código:
function anadir(obj) {
  fec = obj.value.split('/');
  if (fec[0]<9) fec[0]='0'+fec[0];
  if (fec[1]<9) fec[1]='0'+fec[1];
  obj.value = fec.join('/');
}
Saludos,