String.fromCharCode为另一种语言

时间:2013-06-26 11:54:49

标签: javascript

我有这段代码:

document.onkeypress = function(evt) {
   evt = evt || window.event;
   var charCode = evt.which || evt.keyCode;
   var charTyped = String.fromCharCode(charCode);
   alert("Character typed: " + charTyped);
};

我想用另一种语言显示这封信。例如:如果我的键盘现在是法语,但我想显示这封信,好像我的键盘现在是英文。

我该怎么做?

0 个答案:

没有答案