标签: coffeescript
咖啡下面的代码在按Enter或空格键或任何键时可以正常工作,但是在按 tab键
当我调试时,发现按下 tab键时并没有触发事件,而当我单击其他键时,则触发了事件。
$('.close').keypress (e) => if e.keyCode == 9 ....//some operation //.... if e.keyCode == 13 ....//some operation //....