How to detect pressing Enter on keyboard using jQuery?

后端 未结 18 2503
有刺的猬
有刺的猬 2020-11-22 11:07

I would like to detect whether the user has pressed Enter using jQuery.

How is this possible? Does it require a plugin?

EDIT: It looks like I need

18条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-22 11:43

    There's a keypress() event method. The Enter key's ascii number is 13 and is not dependent on which browser is being used.

提交回复
热议问题