jquery 将 keyup 绑定到 firefox 中的 body
我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将事件绑定到
document
:您可以使几乎任何节点接收键盘事件。在“现代”浏览器中,您可以设置
tabIndex
。之后该事件即可聚焦。bind the event to the
document
instead:You can make almost any node receive keyboard events. In "modern" browsers, you can setup a
tabIndex
. After that the event is focusable.