Tema: KeyPress
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/07/2002, 17:13
Avatar de .
.
 
Fecha de Ingreso: mayo-2002
Ubicación: Tampico
Mensajes: 906
Antigüedad: 22 años, 8 meses
Puntos: 1
Re: KeyPress

<script language="JavaScript">
document.onkeypress = tecla;
function tecla(e) {
if (document.layers)
boton = e.which;
else
boton = window.event.keyCode;
if (boton != 0)
alert("Valor Ascii =" + boton);
}
</script>