密码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;
}
342951 次浏览

它是键盘上的 ReturnEnter键。

那就是 Enter钥匙。

检查 ASCII 表

它代表 CR,或者回车,也就是 Return钥匙。

Enter密钥应该有密码13。它不工作吗?

密钥13密码是 ENTER 密钥。

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>

键码13表示 Enter键。

如果你想得到更多的密钥代码和密钥是什么,请转到: https://keycode.info

为我工作。 使用“@testinglibrary/response”: “ ^ 12.1.2”