keycode 13 is for which key

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

    key 13 keycode is for ENTER key.

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

    Keycode 13 is the Enter key

    Which keycode for escape key with jQuery

    0 讨论(0)
  • 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

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

    function myFunction(event) {
      var x = event.charCode;
      document.getElementById("demo").innerHTML = "The Unicode value is: " + x;
    }
    <p>Keycode 13 is: </p> 
    <button>Enter</button>
    <p>Press a key on the keyboard in the input field to get the Unicode character code of the pressed key.</p>
    <b>You can test in below</b>
    
    <input type="text" size="40" onkeypress="myFunction(event)">
    
    <p id="demo"></p>
    
    <p><strong>Note:</strong> The charCode property is not supported in IE8 and earlier versions.</p>

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

    It's the Return or Enter key on keyboard.

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

    Check an ASCII table.

    It stands for CR, or Carriage Return, AKA the Return key.

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