How to find the key code for a specific key

后端 未结 11 2103
猫巷女王i
猫巷女王i 2020-12-28 09:29

What\'s the easiest way to find the keycode for a specific key press?

Are there any good online tools that just capture any key event and show the code?

I wa

11条回答
  •  眼角桃花
    2020-12-28 10:29

    Vanilla javascript + Alert:

    document.addEventListener('keypress', function(e) {
      alert("Key: " + e.code + ", Code: " + e.charCode)
    });
    

    Vanilla javascript + console:

    document.addEventListener('keypress', function(e) {
      console.log("Key: " + e.code + ", Code: " + e.charCode)
    });
    

提交回复
热议问题