keycode 13 is for which key

前端 未结 8 1657
栀梦
栀梦 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条回答
  •  天涯浪人
    2021-01-30 12:36

    Keycode 13 means the Enter key.

    If you would want to get more keycodes and what the key the key is, go to: https://keycode.info

提交回复
热议问题