keycode 13 is for which key

前端 未结 8 1644
栀梦
栀梦 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:42

    The Enter key should have the keycode 13. Is it not working?

    0 讨论(0)
  • 2021-01-30 12:43

    That would be the Enter key.

    0 讨论(0)
提交回复
热议问题