开发者

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

开发者 https://www.devze.com 2022-12-19 10:34 出处:网络
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:

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

精彩评论

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

关注公众号