键码 13 对应哪个键
键码为 13
的键盘上的哪个键?
switch(key) {
case 37:
$.keynav.goLeft();
break;
case 38:
$.keynav.goUp();
break;
case 39:
$.keynav.goRight();
break;
case 40:
$.keynav.goDown();
break;
case 13:
$.keynav.activate();
break;
}
Which is the key on the keyboard having the keycode as 13
?
switch(key) {
case 37:
$.keynav.goLeft();
break;
case 38:
$.keynav.goUp();
break;
case 39:
$.keynav.goRight();
break;
case 40:
$.keynav.goDown();
break;
case 13:
$.keynav.activate();
break;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
它是键盘上的 Return 或 Enter 键。
It's the Return or Enter key on keyboard.
这就是 Enter 键。
That would be the Enter key.
检查 ASCII 表。
它代表
CR
或回车符,又称为 Return 键。Check an ASCII table.
It stands for
CR
, or Carriage Return, AKA the Return key.键码 13 是 Enter 键
转义键的键码使用 jQuery
Keycode 13 is the Enter key
Which keycode for escape key with jQuery
Enter 键的键码应为 13。它不起作用吗?
The Enter key should have the keycode 13. Is it not working?
键码 13 表示 Enter 键。
如果您想获取更多密钥代码以及密钥是什么,请访问:https://keycode.info
Keycode 13 means the Enter key.
If you would want to get more keycodes and what the key the key is, go to: https://keycode.info
键 13 键码用于 ENTER 键。
key 13 keycode is for ENTER key.
为我工作。
使用“@testing-library/react”:“^12.1.2”
Working for me.
Using "@testing-library/react": "^12.1.2"