Esta es mi funcion:
Cita:
Y quiero que me acepte un patron de este tipo ^[0-9]{7}$ o cualquier patron estilo regex, pero siempre con el evento onkeypress.function ValidaNumeros(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla == 8) return true;
patron = /[0-9]/;
te = String.fromCharCode(tecla).match(patron);
return patron.test(te);
}
tecla = (document.all) ? e.keyCode : e.which;
if (tecla == 8) return true;
patron = /[0-9]/;
te = String.fromCharCode(tecla).match(patron);
return patron.test(te);
}
Gracias.