如何使用javascript将键码转换为字符
var key_code = 65;
结果应该是
character = "a";
答案 0 :(得分:125)
String.fromCharCode()
就是你想要的:
fromCharCode()方法将Unicode值转换为字符。
语法
String.fromCharCode(n1, n2, ..., nX)
答案 1 :(得分:9)
见here:
String.fromCharCode((96 <= key && key <= 105) ? key-48 : key)