如何处理“左”和“正确”原型上的关键?

发布于 2024-11-19 23:36:19 字数 104 浏览 3 评论 0原文

我需要在原型上操作“左”和“右”键,例如 http://mangastream.com/

I need manipulate "left" and "right" key on prototype, something like http://mangastream.com/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩世 2024-11-26 23:36:19

简单如下:

$(document).observe('keydown', function (e) {
    switch (e.keyCode) {
        case Event.KEY_LEFT:
            e.stop(); // prevent the default action, like horizontal scroll
            window.location = '/read/prev';
            break;
        case Event.KEY_RIGHT:
            e.stop();
            window.location = '/read/next';
            break;
    }
});

http://jsfiddle.net/pMts6/

Event.KEY_LEFTEvent.KEY_RIGHT 是对应按键的数字代码的方便常量。

了解 Prototype 事件,请访问 http://api.prototypejs.org/dom/Event/

As simple as:

$(document).observe('keydown', function (e) {
    switch (e.keyCode) {
        case Event.KEY_LEFT:
            e.stop(); // prevent the default action, like horizontal scroll
            window.location = '/read/prev';
            break;
        case Event.KEY_RIGHT:
            e.stop();
            window.location = '/read/next';
            break;
    }
});

http://jsfiddle.net/pMts6/

Event.KEY_LEFT and Event.KEY_RIGHT are their handy constants for the numerical codes of the corresponding keys.

Read up on Prototype events at http://api.prototypejs.org/dom/Event/.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文