ajax 内容中的 qTip

发布于 2024-08-11 07:45:47 字数 368 浏览 3 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

内心激荡 2024-08-18 07:45:48

似乎 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() ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文