鼠标滚轮点击& jquery.delegate

发布于 2024-12-11 18:34:43 字数 359 浏览 0 评论 0原文

我想了解为什么当我用鼠标滚轮单击时以下代码不起作用。

$(document).delegate("a", "click", function(e) { alert("click"); });

但这是可行的(点击鼠标滚轮):

$("a").click(function(e) { alert("click"); });

谢谢。

编辑: 根据评论:它在 IE8 中工作,而不在 Chrome 或 FF 中工作。 由于它可以在没有 .delegate 的情况下工作,我认为这是一个 jquery 问题,但不确定......

I would like to understand why the following code does not work when I click with the mouse wheel.

$(document).delegate("a", "click", function(e) { alert("click"); });

This works though (mouse wheel click):

$("a").click(function(e) { alert("click"); });

Thanks.

edit:
According to a comment: it's working in IE8, not in Chrome or FF.
Since it works without .delegate, I was thinking it's a jquery problem, but not sure...

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

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

发布评论

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

评论(1

写给空气的情书 2024-12-18 18:34:43

您可以

$('body').delegate("a", "click", function(e) { alert("click"); });

看到: http://api.jquery.com/delegate/

它应该是一回事委托他人做某事。

You can do

$('body').delegate("a", "click", function(e) { alert("click"); });

see: http://api.jquery.com/delegate/

it should be one thing delegate another to do something.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文