12/02/2007, 05:20
|
| Colaborador | | Fecha de Ingreso: febrero-2002 Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses Puntos: 772 | |
Re: Evitar caracteres repetidos Hola joancmbb. Bienvenido al foro.
Prueba este código:
Código:
<html>
<head>
<script type="text/javascript">
function validar(e,txt) {
tecla = (document.all) ? e.keyCode : e.which;
tecla = String.fromCharCode(tecla);
return (txt.indexOf(tecla)==-1);
}
</script>
</head>
<body>
<input type="text" onkeypress = "return validar(event,this.value)" />
</body>
</html>
Saludos, |