jquery 函数到要附加的元素?
我正在尝试附加一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 jQuery 的
live()
方法 而不是常规事件处理程序。例如:现在,当您执行此操作时,
新添加的 div 将根据您的需要获取 mouseenter 和 mouseleave 事件。
use jQuery's
live()
method instead of the regular event handler. For example:now, when you do this
the newly added div will get the mouseenter and mouseleave events as you wanted.
您可能使用
.click()
、.hover()
等绑定处理程序。这些仅适用于绑定处理程序时页面上已有的项目。尝试使用
.live(event, handler)
代替。这绑定到现在匹配的元素以及稍后添加的任何匹配元素。例如
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.