Ver Mensaje Individual
  #5 (permalink)  
Antiguo 27/08/2008, 10:33
Avatar de David
David
Moderador
 
Fecha de Ingreso: abril-2005
Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 19 años, 8 meses
Puntos: 839
Exclamación Respuesta: detectar backspace en onkeypress

Mira este ejemplo:
Código PHP:
<html>
<
head>
<
script language="javascript">
function 
detectkey(evt,obj) {
keycode = (evt.keyCode==0) ? evt.which evt.keyCode;
alert(obj.value String.fromCharCode(keycode));
}
</script>
</head>
<body>
<input type="text" onkeypress="detectkey(event,this)" />
</body>
</html> 
Lo que hacemos es obtener el código de tecla y convertirla a carácter, luego ese carácter añadimos al value del input.
__________________
Por favor, antes de preguntar, revisa la Guía para realizar preguntas.