DOM改变后如何绑定javascript事件
我有一个绑定到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
$.live
是你想要的:$.live
is what you want:从现在开始,请使用
.on()
,因为.live()
在 jQuery 中已被弃用,因为它效率低下。Please use
.on()
from now on, as.live()
is deprecated in jQuery as it is inefficient.或者,您可以使用
$.delegate
更多信息:什么是将 jQuery 单击事件绑定到表格每一行上的每个锚标记的最佳实践
Alternatively, you could use
$.delegate
More info: what is the best practice of binding jQuery click event to each anchor tag on every row of a table