如何使用javascript将keycode转换为字符

时间:2010-10-20 12:32:25

标签: javascript variables keycode

如何使用javascript将键码转换为字符

var key_code = 65;

结果应该是

character = "a";

2 个答案:

答案 0 :(得分:125)

String.fromCharCode()就是你想要的:

  

fromCharCode()方法将Unicode值转换为字符。

     

语法

String.fromCharCode(n1, n2, ..., nX)

答案 1 :(得分:9)

here

String.fromCharCode((96 <= key && key <= 105) ? key-48 : key)