键盘导航以加载页面

时间:2010-09-22 11:28:35

标签: jquery keyboard-events

有一种快速方法可以使用左右箭头键加载下一页吗? 到目前为止我的解决方案是:

$(document).ready(function () {
    $("a.transition").click(function (event) {
        event.preventDefault();
        linkLocation = this.href;
        $("body").fadeOut(20, redirectPage);

    });
    $("a.transitionB").click(function (event) {
        event.preventDefault();
        linkLocation = this.href;
        $("body").fadeOut(20, redirectPage);

    });
    function redirectPage() {
        window.location = linkLocation;
    }
});

有2个不可见的链接层。但我需要一些东西来控制过渡而不点击页面,而是使用箭头按钮。

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

$(document).keyup(function(e) {
    console.log(e.keyCode);
});

修改

$(document).keyup(function(e) {
  switch(e.keyCode) {
    case 37 : alert('You pressed Left'); break;
    case 38 : alert('You pressed Up'); break;
    case 39 : alert('You pressed Right'); break;
    case 40 : alert('You pressed Down'); break;
   }
});

您可以在此处尝试 http://jsbin.com/uzigu4

答案 1 :(得分:1)

试试这个(不同的浏览器==不同的密钥代码):

function redirectPage(href) {
    window.location = href;
}

function onKey(e) {
    var key = e.keyCode ? e.keyCode : e.which;

    if (key == 37 || key == 26) {
        e.preventDefault();
        $("a.transition").click();
    } else if (key == 39 || key == 27) {
        e.preventDefault();
        $("a.transitionB").click();
    }
}

$(document).ready(function () {
    $(document).keypress(onKey);
    $("a.transition, a.transitionB").click(function (event) {
        event.preventDefault();
        $("body").fadeOut(20, function() {redirectPage(this.href)});
    });
});