16/12/2012, 17:16
|
| Colaborador | | Fecha de Ingreso: junio-2007 Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses Puntos: 1567 | |
Respuesta: Quitar foco luego de pulsar una tecla fijate asi
Código HTML:
Ver original<!DOCTYPE html> <title>Aceptar solo rango de números desde teclado </title> <script type="text/javascript"> //<![CDATA[ function verifica(campo){ var elcampo = document.getElementById(campo); var valor = parseInt(elcampo.value); if(valor == 1){ document.getElementById("otrocampo").focus(); return false; } if(valor >= 2 && valor <= 6){ alert("hay que ingresar una observación"); document.getElementById("otrocampo").focus(); return false; } } function validar(e){ var expresion=/[1-6\b]/; return expresion.test(String.fromCharCode(e.which)); } //]]> <input type="text" id="descarte" name="descarte" onkeypress="return validar(event)" onkeyup="verifica(this.id)" maxlength="1"/> <input type="text" id="otrocampo" />
Saludos
__________________ La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R. |