jquery 将 keyup 绑定到 firefox 中的 body

发布于 2024-10-11 16:54:04 字数 238 浏览 2 评论 0原文

我将 jquery 中的 keyup 函数绑定到适用于每个浏览器的 body 除了 Firefox 之外,

代码: -

 $('body').bind('keyup', function(e) {
    //alert ( e.which );
    alert('testing');

});

我如何为 Firefox 执行此操作。它根本没有反应,

谢谢

i m binding keyup function in jquery to body which works in every browser
except firefox

the code: -

 $('body').bind('keyup', function(e) {
    //alert ( e.which );
    alert('testing');

});

how do i do it for firefox. it does not responds at all

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哆啦不做梦 2024-10-18 16:54:04

将事件绑定到 document

$(document).bind('keyup', function(e) {
    alert('testing');
});

您可以使几乎任何节点接收键盘事件。在“现代”浏览器中,您可以设置 tabIndex。之后该事件即可聚焦。

$(document.body).attr('tabIndex', 1).bind('keyup', function(e) {
    alert('testing');
});

bind the event to the document instead:

$(document).bind('keyup', function(e) {
    alert('testing');
});

You can make almost any node receive keyboard events. In "modern" browsers, you can setup a tabIndex. After that the event is focusable.

$(document.body).attr('tabIndex', 1).bind('keyup', function(e) {
    alert('testing');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文