Hola
Wdeah
Prueba este ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function pulsar(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==65) // tecla A
alert('Gracias por pulsarme');
}
</script>
</head>
<body onkeyup="pulsar(event)">
</body>
</html>
Saludos,