ajax 内容中的 qTip
我使用 load jquery 函数加载一些 ajax 内容,而 qTip 不再适用于 ajax 内容中的元素。
我处理了其他 jquery 事件的 live jquery 函数,但我不知道如何继续处理 qTip。
//Load part
$(".load_trigger").load("page.php");
// Tooltip part
$(".content_el").each(function(){
jQuery(".trigger_el", this).qtip({
content:...
});
});
有什么想法吗?
谢谢!
I load some ajax content with the load jquery function and qTip is no more working for elements in the ajax content.
I dealt with the live jquery function for the other jquery event but I don't know how to proceed with qTip.
//Load part
$(".load_trigger").load("page.php");
// Tooltip part
$(".content_el").each(function(){
jQuery(".trigger_el", this).qtip({
content:...
});
});
Any idea ?
Thx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎 qTip 有一个内置功能可以做到这一点,无需加载(请参阅 这里)。
如果您仍然需要使用
$(".load_trigger").load("page.php");
您是否尝试过类似:content: $('.load_trigger').html ()
?It seems that qTip has a built-in functionality to do that, no need to load (see here).
If you still need to use
$(".load_trigger").load("page.php");
did you tried something like :content: $('.load_trigger').html()
?