Ver Mensaje Individual
  #5 (permalink)  
Antiguo 08/09/2009, 05:55
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 18 años
Puntos: 126
Respuesta: como buscar numeros dentro de un campo de texto

Hola

Prueba con esto

Código javascript:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  2.    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  3. <html>
  4. <head>
  5. <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  6. <title>Validar entrada de datos</title>
  7. <script type="text/javascript">
  8. function validar(e) { // 1
  9.     tecla = (document.all) ? e.keyCode : e.which; // 2
  10.     if (tecla==8) return true; // 3
  11.     patron =/[A-Za-z\s]/; // 4
  12.     te = String.fromCharCode(tecla); // 5
  13.     return patron.test(te); // 6
  14. }
  15. </script>
  16. </head>
  17.  
  18. <body>
  19. <p><input type="text" name="textfield" onkeypress="return validar(event)" /><br />
  20. <textarea rows="5" cols="20" onkeypress="return validar(event)"></textarea></p>
  21. </body>
  22. </html>

Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />