开发者

What are the key codes for the right and left arrow keys?

What are the key codes for the righ开发者_开发技巧t and left arrow keys?


Left: 37, Right: 39.

Discovery of other keycodes can be done with the following code:

$('body').keyup(function (event) {
  console.log(event.keyCode);
});

Which will output the keycode to the console when you press any key.


left key - 37

right key - 39

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜