Hola
hardlock
Te dejo un ejemplo:
Código PHP:
<html>
<head>
<script>
function validar(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==8) return true; //Tecla de retroceso (para poder borrar)
patron =/[A-Z a-z]/; // Solo acepta letras
//patron = /\d/; Solo acepta números
te = String.fromCharCode(tecla);
return patron.test(te);
}
</script>
</head>
<body>
<input type="text" name="textfield" onkeypress="return validar(event)">
</body>
</html>
De las dos líneas donde se declara la variable
patron deja la que necesites utilizar.
Saludos,