keyCode 在 Angularjs 中显示不正确的代码值

keyCode displaying incorrect code value in Angularjs

我正在捕获为模糊搜索结果使用 API 所按下的键。

无论如何,我正在使用此代码在我的标记和指令控制器中捕获按键:

<input type="text"
       placeholder="Search"
       ng-click="searchPop($event)"
       ng-keypress="typingMainSearch($event)">

vs.typingMainSearch = function(e) {
    console.log(e.keyCode);
    vs.searchPopoverDisplay = true;
};

然而,当我输入 a 时,我得到 97,当我输入 b 时,我得到 98


当我将它们与我在网上查看的任何地方进行比较时,这些值是不正确的。

http://www.cambiaresearch.com/articles/15/javascript-char-codes-key-codes

Is it possible to listen for arrow keyspress using ng-keypress?

http://jsfiddle.net/YKeye/

为什么会这样? a 假设为 65b 假设为 66:

 var key = {
      'a': 65,
      'b': 66,
      'c': 67,
      'd': 68,
      'e': 69,
      'f': 70,
      'g': 71,
      'h': 72,
      'i': 73,
      'j': 74,
      'k': 75,
      'l': 76,
      'm': 77,
      'n': 78,
      'o': 79,
      'p': 80,
      'q': 81,
      'r': 82,
      's': 83,
      't': 84,
      'u': 85,
      'v': 86,
      'w': 87,
      'x': 88,
      'y': 89,
      'z': 90
  }

我想你要找的是 ng-keyup,这对你有用:

<input type="text"
       placeholder="Search"
       ng-click="searchPop($event)"
       ng-keyup="typingMainSearch($event)">

根据 Mozilla,按键的 keyCode 属性 已弃用。

此外 - 这就是为什么您在单击 'a' 时看到 97 的原因(取自 Mozilla link):

The Unicode reference number of the key;

您可以找到 unicode 编号 table here.