本文介绍了如何将char转换为其键码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将字符转换为相应的键码?
How can I convert a character to its respective keycode?
例如:
-
a
至65
-
b
至66
-
c
至67
-
d
至68
a
to65
b
to66
c
to67
d
to68
推荐答案
您可以使用实现此功能。
You can use the charCodeAt
function to achieve this.
工作示例:
function showKeyCode () {
var character = document.getElementById("character").value.substring(0, 1);
var code = document.getElementById("character").value.charCodeAt(0);
var msg = "The Key Code for the \"" + character + "\" character is " + code + ".";
alert(msg);
}
<input type="text" id="character" size="15">
<input type="button" value="Show Key Code" onclick="showKeyCode();">
这篇关于如何将char转换为其键码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!