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

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. });

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