Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/04/2006, 02:13
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola AnDrEa MM

Modificando un poco una de las FAQs quedaría esto. Pruebalo a ver si te sirve:
Código:
<html>
<head>
<script>
function validar(e) {
    tecla = (document.all) ? e.keyCode : e.which;
    if (tecla==8) return true;
    patron =/[\*\|]/; // Solo acepta letras
    te = String.fromCharCode(tecla);
    return !patron.test(te); 
} 
</script>
</head>

<body>
<input type="text" name="textfield" onkeypress="return validar(event)">
</body>
</html>
Saludos,