DOM改变后如何绑定javascript事件

发布于 2024-08-30 21:20:32 字数 325 浏览 3 评论 0原文

我有一个绑定到 tr 标签的函数,以提供如下所示的鼠标悬停效果:

$(".grid tr").bind("mouseenter", 功能 () { $(this).addClass("悬停"); }).bind("mouseleave", 函数 () { $(this).removeClass("悬停"); });

问题是当分页或过滤等发生时,网格是通过ajax加载的。这会导致网格被完全替换并且所有事件绑定失败。有没有一种方法可以绑定到一个事件,即使 DOM 发生变化,该事件也会自动附加到匹配的元素?

谢谢!

I have a function that binds to a tr tag to provide a mouseover effect like this:

$(".grid tr").bind("mouseenter",
function () {
$(this).addClass("hover");
}).bind("mouseleave", function () {
$(this).removeClass("hover"); });

The problem is the grid is loaded via ajax when paging occurs, or filtering etc. This causes the grid to be completely replaced and all the event bindings to fail. Is there a way to bind to an event that automatically attaches to matching elements even when the DOM changes?

Thanks!

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

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

发布评论

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

评论(3

过度放纵 2024-09-06 21:20:32

$.live 是你想要的:

$(".grid tr").live("mouseenter", function () { $(this).addClass("hover"); }).bind("mouseleave", function () { $(this).removeClass("hover"); });

$.live is what you want:

$(".grid tr").live("mouseenter", function () { $(this).addClass("hover"); }).bind("mouseleave", function () { $(this).removeClass("hover"); });
述情 2024-09-06 21:20:32

从现在开始,请使用 .on(),因为 .live() 在 jQuery 中已被弃用,因为它效率低下。

$(".grid tr")
    .on("mouseenter", function () { $(this).addClass("hover"); })
    .on("mouseleave", function () { $(this).removeClass("hover"); });

Please use .on() from now on, as .live() is deprecated in jQuery as it is inefficient.

$(".grid tr")
    .on("mouseenter", function () { $(this).addClass("hover"); })
    .on("mouseleave", function () { $(this).removeClass("hover"); });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文