ascii codes for windows keyboard keys and the codes for function keys(F1 - F12) and other keys like shift,capslock,backspace,ctrl etc

前端 未结 3 1827
春和景丽
春和景丽 2020-12-21 13:21

To write a keyboard related application I wanted the list of the ASCII codes of the keys that I have on my keyboard.

It is a windows keyboard :

3条回答
  •  猫巷女王i
    2020-12-21 13:44

    You can get all the keyCode values (even for Function keys) by running (injecting) following JavaScript code into your browser's console. Paste the following code and press enter. Then click anywhere in the page to remove the cursor from the console.

    Then press any key for which you want a keyCode in Hex

    Here is the code :

        document.addEventListener("keydown", function (e) {
          code = (e.keyCode);
          console.log("In decimal "+e.keyCode);
          var hex = code.toString(16);
          console.log("In hex "+hex);
        }, false);
    

提交回复
热议问题