键码 13 对应哪个键

发布于 2024-11-08 18:42:30 字数 309 浏览 0 评论 0原文

键码为 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 技术交流群。

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

发布评论

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

评论(9

回忆躺在深渊里 2024-11-15 18:42:30

它是键盘上的 ReturnEnter 键。

It's the Return or Enter key on keyboard.

天涯离梦残月幽梦 2024-11-15 18:42:30

这就是 Enter 键。

That would be the Enter key.

隱形的亼 2024-11-15 18:42:30

检查 ASCII 表

它代表 CR 或回车符,又称为 Return 键。

Check an ASCII table.

It stands for CR, or Carriage Return, AKA the Return key.

灵芸 2024-11-15 18:42:30

键码 13 是 Enter

转义键的键码使用 jQuery

Keycode 13 is the Enter key

Which keycode for escape key with jQuery

撩发小公举 2024-11-15 18:42:30

Enter 键的键码应为 13。它不起作用吗?

The Enter key should have the keycode 13. Is it not working?

_畞蕅 2024-11-15 18:42:30

键码 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

夜空下最亮的亮点 2024-11-15 18:42:30

键 13 键码用于 ENTER 键。

key 13 keycode is for ENTER key.

长途伴 2024-11-15 18:42:30
function myFunction(event) {
  var x = event.charCode;
  document.getElementById("demo").innerHTML = "The Unicode value is: " + x;
}
<p>Keycode 13 is: </p> 
<button>Enter</button>
<p>Press a key on the keyboard in the input field to get the Unicode character code of the pressed key.</p>
<b>You can test in below</b>

<input type="text" size="40" onkeypress="myFunction(event)">

<p id="demo"></p>

<p><strong>Note:</strong> The charCode property is not supported in IE8 and earlier versions.</p>

function myFunction(event) {
  var x = event.charCode;
  document.getElementById("demo").innerHTML = "The Unicode value is: " + x;
}
<p>Keycode 13 is: </p> 
<button>Enter</button>
<p>Press a key on the keyboard in the input field to get the Unicode character code of the pressed key.</p>
<b>You can test in below</b>

<input type="text" size="40" onkeypress="myFunction(event)">

<p id="demo"></p>

<p><strong>Note:</strong> The charCode property is not supported in IE8 and earlier versions.</p>

陌伤浅笑 2024-11-15 18:42:30

为我工作。
使用“@testing-library/react”:“^12.1.2”

Working for me.
Using "@testing-library/react": "^12.1.2"

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