Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/04/2009, 08:52
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses
Puntos: 772
Respuesta: Se puede asignar funciones a Teclas ?

Hola colote

Prueba este ejemplo:

Código javascript:
Ver original
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function pulsar(e) {
  5.   if (e.keyCode==34) then {...} // avPag
  6.   if (e.keyCode==33) then {...} // rePag  
  7. }
  8. </script>
  9. </head>
  10. <body>
  11. <form onkeyup="pulsar(event)">
  12. <input type="text" /><input type="text" />
  13. </form>
  14. </body>
  15. </html>

Saludos,