jquery 函数到要附加的元素?

发布于 2024-12-07 15:49:02 字数 232 浏览 0 评论 0原文

我正在尝试附加一些 html 内容,我想知道为什么当我尝试编写一些 jquery 函数时,刚刚附加的元素不起作用?

例如,如果我有一个文本列表,当您单击某些内容时,该列表将在该列表中填充某种 .append('more text') 。然后,如果我编写了一些 jquery 函数,表示将鼠标悬停在该文本上时,它将不起作用。它仅适用于附加之前已填充的文本。

我希望我的例子能澄清我的问题?

感谢您的帮助!

I'm trying to append some html stuff, and I was wondering how come when I try to write some jquery function, that element that was just appended won't work?

For instance, if I had a list of text and when you click on something, that list will populate with some sort of .append('more text') to that list. Then if I have written some jquery function saying when hovering over that text, it won't work. It will only work on text that was already populated before the append.

I hope my example clarifies my question?

Thanks for your help!

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

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

发布评论

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

评论(2

凉世弥音 2024-12-14 15:49:02

使用 jQuery 的 live() 方法 而不是常规事件处理程序。例如:

$('#myelement > *').live('mouseenter', function(evt) {
    $(this).addClass('hovered');
}).live('mouseleave', function(evt) {
    $(this).removeClass('hovered');
})

现在,当您执行此操作时,

$('#myelement').append( '<div>More Stuff</div>' );

新添加的 div 将根据您的需要获取 mouseenter 和 mouseleave 事件。

use jQuery's live() method instead of the regular event handler. For example:

$('#myelement > *').live('mouseenter', function(evt) {
    $(this).addClass('hovered');
}).live('mouseleave', function(evt) {
    $(this).removeClass('hovered');
})

now, when you do this

$('#myelement').append( '<div>More Stuff</div>' );

the newly added div will get the mouseenter and mouseleave events as you wanted.

流星番茄 2024-12-14 15:49:02

您可能使用 .click().hover() 等绑定处理程序。这些仅适用于绑定处理程序时页面上已有的项目。

尝试使用 .live(event, handler) 代替。这绑定到现在匹配的元素以及稍后添加的任何匹配元素。

例如

$('li').live('click', function() {
    // do stuff here
});

You are probably binding your handlers using .click(), .hover(), etc. These only work for items already on the page at the time the handler is bound.

Try using .live(event, handler) instead. This binds to elements which match now, and any elements that match that are added later.

e.g.

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