How to get LOCALIZED character on keypress?

后端 未结 2 2004
醉梦人生
醉梦人生 2021-02-15 12:45

I need to get localized character on keypress event. For example: on a Czech keyboard I need to get ř not 5 character (key code 53) (see Czech keyb

2条回答
  •  醉话见心
    2021-02-15 13:28

    Using the keypress event will give you the character typed, regardless of keyboard layout.

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

    Here's my usual link to Jan Wolter's excellent page documenting JavaScript key handling: http://unixpapa.com/js/key.html

提交回复
热议问题