keypress事件无法在coffeescript中的“选项卡”按键上工作

时间:2019-01-31 11:48:55

标签: coffeescript

咖啡下面的代码在按Enter或空格键或任何键时可以正常工作,但是在按 tab键

时不起作用

当我调试时,发现按下 tab键时并没有触发事件,而当我单击其他键时,则触发了事件。

$('.close').keypress (e) =>
    if e.keyCode == 9
         ....//some operation //....
    if e.keyCode == 13
         ....//some operation //....

0 个答案:

没有答案