09/03/2007, 11:57
|
| Colaborador | | Fecha de Ingreso: febrero-2002 Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses Puntos: 772 | |
Re: Pasar a otro input despues de escribir solo numeros Hola JuanKa
Aquí tienes un ejemplo:
Código:
<html>
<head>
<script type="text/javascript">
function validar(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==8) return true;
patron = /\d/;
te = String.fromCharCode(tecla);
return patron.test(te);
}
function contar(obj,destino) {
if (obj.value.length==obj.maxLength) destino.focus();
}
</script>
</head>
<body>
<form onkeypress="return validar(event)">
<input type="text" name="dia" maxlength="2" onkeyup="contar(this,mes)" />
<input type="text" name="mes" maxlength="2" onkeyup="contar(this,anio)" />
<input type="text" name="anio" maxlength="4" onkeyup="contar(this,dia)" />
</body>
</html>
Saludos, |