How to detect pressing Enter on keyboard using jQuery?(如何使用 jQuery 检测键盘上的 Enter 键?)
问题描述
我想用jQuery检测用户是否按下了Enter.
I would like to detect whether the user has pressed Enter using jQuery.
这怎么可能?需要插件吗?
How is this possible? Does it require a plugin?
看来我需要使用 keypress()
一个>方法.
It looks like I need to use the keypress()
method.
我想知道是否有人知道该命令是否存在浏览器问题 - 比如有没有我应该知道的浏览器兼容性问题?
I wanted to know if anyone knows if there are browser issues with that command - like are there any browser compatibility issues I should know about?
推荐答案
jQuery 的全部意义在于您不必担心浏览器的差异.我很确定您可以安全地使用 enter 在所有浏览器中设置为 13.因此,考虑到这一点,您可以这样做:
The whole point of jQuery is that you don't have to worry about browser differences. I am pretty sure you can safely go with enter being 13 in all browsers. So with that in mind, you can do this:
$(document).on('keypress',function(e) {
if(e.which == 13) {
alert('You pressed enter!');
}
});
这篇关于如何使用 jQuery 检测键盘上的 Enter 键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 jQuery 检测键盘上的 Enter 键?
基础教程推荐
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 动态更新多个选择框 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01