通过 jQuery .live 或 .delegate 将类添加到元素
大家好:我正在尝试使用 .load 通过 jquery .live 将类添加到 ajaxed 元素,但是根据鼠标操作的事件,我找不到正确的解决方案。有什么想法吗?提前致谢。
hi everyone: I'm trying to add a class via jquery .live to an ajaxed element using .load but with mouse action depending events I cant find the right solution. Any ideas? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加新元素时,
.live()
和.delegate()
不能用于运行任意代码。它们专门用于处理事件。
如果要修改元素,则需要从 DOM 中选择它们,或者在将新元素添加到 DOM 之前使用对新元素的直接引用。
.live()
and.delegate()
can't be used to run arbitrary code when a new element is added.They're meant specifically for handling events.
If you want to modify the elements, you need to select them from the DOM, or use a direct reference to the new elements before you add them to the DOM.