Ver Mensaje Individual
  #7 (permalink)  
Antiguo 01/12/2003, 13:02
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses
Puntos: 772
Hola de nuevo.

Nunca habia visto lo de document.txtcampo.restrict = "0-9"; Puedes usar esta función:

function numeros(e) {
tecla=(document.all) ? e.keyCode : e.which;
if((tecla<48 || tecla>57) && tecla!=45) return false;
}

La llamas con:

<input type="text" onKeyPress="return numeros(event)">

Saludos,