Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/01/2013, 11:07
Avatar de Dradi7
Dradi7
 
Fecha de Ingreso: junio-2008
Ubicación: Peru - Lima
Mensajes: 1.518
Antigüedad: 16 años, 7 meses
Puntos: 220
Respuesta: Validacion de numero

Código HTML:
Ver original
  1. <input type="text" name="txt" id="txt" onkeypress="return valida(event);"/>

Código Javascript:
Ver original
  1. function valida(e){
  2.       var r = /[8]/;
  3.       var evt = e.keyCode ? e.keyCode : e.which;
  4.       var txt = document.getElementById('txt');
  5.       var value = txt.value + String.fromCharCode(evt);
  6.       return r.test(value);
  7.     }
__________________
La clave de todo triunfador es eliminar todas sus excusas y sus limitaciones

Última edición por Dradi7; 14/01/2013 a las 11:15