delegate() TBODY TR 中的一个类

发布于 2024-12-16 14:27:40 字数 462 浏览 1 评论 0原文

我正在尝试使用 .live().delegate() 来获取在加载 JS 后添加到 DOM 的元素。

这是可行的:

$(".mouseRow tbody tr").live("click", function(event) { });

但这不起作用,也没有给出任何错误,这让我认为这是一个 DOM 计时问题:

$(".mouseRow").delegate("tbody tr", "click", function(event) { });

我是否错误地调用了 .delegate() 函数,也许使用了“tbody tr”声明?或者这是 DOM 计时的问题,因为元素尚不存在(这就是我首先使用 live() 的原因)?

I'm experimenting with .live() and .delegate() for elements that are added to DOM well after my JS is loaded.

This works:

$(".mouseRow tbody tr").live("click", function(event) { });

But this does not work and no errors are given, which makes me think it is a DOM timing thing:

$(".mouseRow").delegate("tbody tr", "click", function(event) { });

Am I calling the .delegate() function incorrectly, perhaps with the "tbody tr" statement? Or is this a problem with the DOM timing since the elements do not exist yet (which is why I used live() in the first place)?

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

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

发布评论

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

评论(1

初与友歌 2024-12-23 14:27:40

如果 .mouseRow 是您要应用于 tr 元素的类,您需要:您在注释中说过 mouseRowtable 元素上的一个类,您希望在其中挂钩 tr 元素上的点击。如果 table.mouseRow 元素在您挂接处理程序时就存在,您可能需要这样:

$("table.mouseRow tbody").delegate("tr", "click", function(event) { ... });

挂接 tbody 上的 click 事件table.mouseRow 中的 code>,当它发生时,检查从实际单击的元素到 tbody 的元素链,以查看其中是否有任何与选择器 tr。如果是这样,它会使用 this 引用相关行来调用事件处理程序。

或者从 jQuery 1.7 开始,建议使用 on 来处理此类事情:(

$("table.mouseRow tbody").on("click", "tr", function(event) { ... });

请注意,参数的顺序略有不同。)

无论哪种方式,当 table .mouseRow tbody 已在 DOM 中。如果还没有,您需要进一步深入 DOM,也许一直到 document

$("table.mouseRow tbody tr").live("click", function(event) { ... });
// or (1.7 onward):
$(document).on("click", "table.mouseRow tbody tr", function(event) { ... }));

If .mouseRow is a class you're applying to tr elements, you want: You've said in the comments that mouseRow is a class on the table element within which you want to hook clicks on tr elements. If the table.mouseRow elements will exist as of when you're hooking up your handlers, you probably want this:

$("table.mouseRow tbody").delegate("tr", "click", function(event) { ... });

That hooks the click event on tbody within the table.mouseRow, and when it occurs checks the chain of elements from the one actually clicked up to tbody to see if any of them match the selector tr. If so, it calls the event handler with this referencing the row in question.

Or as of jQuery 1.7, the recommendation is to use on for this sort of thing:

$("table.mouseRow tbody").on("click", "tr", function(event) { ... });

(Note that the order of arguments is slightly different.)

Either way, you execute that statement when the table.mouseRow tbody is already in the DOM. If it won't be there yet, you need to go further up the DOM, perhaps all the way to document:

$("table.mouseRow tbody tr").live("click", function(event) { ... });
// or (1.7 onward):
$(document).on("click", "table.mouseRow tbody tr", function(event) { ... }));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文