使用左/右键盘箭头导航页面
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.
jQuery(document).keydown(function(e){ if (e.which == 37) { // 37 is the left arrow key code. window.location.href = 'http://www.url.com'; }; if (e.which == 39) { // 39 is the right arrow key code. window.location.href = 'http://www.url.com'; }; });
以上是关于使用左/右键盘箭头导航页面的主要内容,如果未能解决你的问题,请参考以下文章