使用左/右键盘箭头导航页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用左/右键盘箭头导航页面相关的知识,希望对你有一定的参考价值。

This is just a basic example of how you would allow navigation via left/right arrow keys. This is most commonly used when navigating multiple-image image galleries.
  1. jQuery(document).keydown(function(e){
  2. if (e.which == 37) { // 37 is the left arrow key code.
  3. window.location.href = 'http://www.url.com';
  4. };
  5. if (e.which == 39) { // 39 is the right arrow key code.
  6. window.location.href = 'http://www.url.com';
  7. };
  8. });

以上是关于使用左/右键盘箭头导航页面的主要内容,如果未能解决你的问题,请参考以下文章

键盘箭头的扫描码是啥? (右、左、下、上)

jQuery 虚拟键盘 - 设置左箭头和右箭头

javascript按键盘上/右/下/左箭头加速运动

如何为 FileMerge 分配快捷方式

到达最后一张幻灯片时,使用键盘左箭头键不应向左滚动

两个 div 和 div 子元素之间的键盘箭头导航