Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/04/2012, 14:09
chicoxml
 
Fecha de Ingreso: marzo-2011
Mensajes: 13
Antigüedad: 13 años, 8 meses
Puntos: 0
Respuesta: evento keypress desde funcion

por favor prueba este codigo


Código Javascript:
Ver original
  1. <html>
  2.    <head>
  3.     <script>
  4.    
  5.       function solonumero(evt)
  6.       {
  7.          var charcode = (evt.which) ? evt.which : event.keycode
  8.          if (charcode > 31 && (charcode < 48 || charcode > 57))
  9.             return false;
  10.  
  11.          return true;
  12.       }
  13.      </script>
  14.      
  15.    </head>
  16.    <body>
  17.       <input id="text" onkeypress="return solonumero(event)" type="text" name="txttexto">
  18.    </body>
  19. </html>