Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/07/2009, 08:16
Avatar de Jacke87
Jacke87
 
Fecha de Ingreso: junio-2009
Mensajes: 2
Antigüedad: 15 años, 6 meses
Puntos: 0
De acuerdo Respuesta: Cambiar evento OnKeyPress según OnClick

Hola zerokilled!

Muchísimas gracias! solo cambié las funciones changeNum() y changeLet(), quedando así:

Código:
function changeNum() {
	document.getElementById("prof_cod").value="";
	document.getElementById("prof_cod").onkeypress=function Num(b){    
	// NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57    
	tecla = (document.all) ? b.keyCode : b.which;
	if (tecla==8||tecla==0) return true;
	patron =/[0-9]/; 
    te = String.fromCharCode(tecla); 
    return patron.test(te); 
}
}

function changeLet(){
	document.getElementById("prof_cod").value="";
	document.getElementById("prof_cod").onkeypress=function Let(e) { 
    tecla = (document.all) ? e.keyCode : e.which;
    if (tecla==8 || tecla==0) return true;
    patron = /[A-Za-z]/; 
    te = String.fromCharCode(tecla); 
    return patron.test(te); 
}
}