本文介绍了捕获在页面上任何地方按下的Enter键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要随时在登录页面上的任意位置捕获Enter键。
它将启动登录尝试。
I need to capture an Enter Key press at any time anywhere on a logon page.It will initiate a logon attempt.
使用jQuery,我该怎么做?并将其链接到body标签吗?
Using jQuery, how would I accomplish this? And would I link it to the body tag?
推荐答案
$(document).keypress(function(e) {
if(e.which == 13) {
// enter pressed
}
});
这篇关于捕获在页面上任何地方按下的Enter键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!