如何处理“左”和“正确”原型上的关键?
我需要在原型上操作“左”和“右”键,例如 http://mangastream.com/
I need manipulate "left" and "right" key on prototype, something like http://mangastream.com/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单如下:
http://jsfiddle.net/pMts6/
Event.KEY_LEFT
和Event.KEY_RIGHT
是对应按键的数字代码的方便常量。了解 Prototype 事件,请访问 http://api.prototypejs.org/dom/Event/ 。
As simple as:
http://jsfiddle.net/pMts6/
Event.KEY_LEFT
andEvent.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/.