keycode 13 is for which key

前端 未结 8 1661
栀梦
栀梦 2021-01-30 12:11

Which is the key on the keyboard having the keycode as 13?

switch(key) {
  case 37: 
    $.keynav.goLeft();
    break;
  case 38: 
    $.keynav.goUp         


        
8条回答
  •  猫巷女王i
    2021-01-30 12:36

    function myFunction(event) {
      var x = event.charCode;
      document.getElementById("demo").innerHTML = "The Unicode value is: " + x;
    }

    Keycode 13 is:

    Press a key on the keyboard in the input field to get the Unicode character code of the pressed key.

    You can test in below

    Note: The charCode property is not supported in IE8 and earlier versions.

提交回复
热议问题