我有这个代码:
document.onkeypress = function(evt) {
evt = evt || window.event;
var charCode = evt.which || evt.keyCode;
var charTyped = String.fromCharCode(charCode);
alert("Character typed: " + charTyped);
};
我想用另一种语言显示这封信。例如:如果我的键盘现在是法语,但我想显示字母,就好像我的键盘现在是英语一样。
我该怎么做?