29/01/2009, 07:16
|
| | | Fecha de Ingreso: octubre-2008 Ubicación: Madrid
Mensajes: 495
Antigüedad: 16 años Puntos: 66 | |
Respuesta: eveto onKeypress hola peewe63,
prueba si quiéres con esto, a ver que tal:
function soloNumLetras(e)
{var tecla;
tecla = (document.all) ? e.keyCode : e.which;
if(tecla == 8)
{return true;}
var patron;
patron = /[abcdefghijklmnñopqrstuvwxyzABCDEFGHIJKLMNÑOPQRSTUV WXYZ0123456789]/
var te;
te = String.fromCharCode(tecla);
return patron.test(te);
}
y en tu input onkeypress='return nNum(event);'
salu2 |