Tema: ayuda
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 14/07/2010, 21:49
ALONDRA1235
 
Fecha de Ingreso: diciembre-2009
Mensajes: 48
Antigüedad: 14 años, 5 meses
Puntos: 0
Respuesta: ayuda

solo me falta validar la barra espaciadora ayuda por favor

<script type="text/javascript">
function validar(e) { // 1
tecla = (document.all) ? e.keyCode : e.which; // 2
if (tecla==8) return true; // 3

patron = /D/; //evita numeros
patron =/[A-Za-zñÑs]/; // 4 solo admite letras y ñ
te = String.fromCharCode(tecla); // 5
return patron.test(te); // 6
}
</script>