Jquery-tools和fancybox冲突?

发布于 2024-10-22 03:04:55 字数 709 浏览 1 评论 0原文

首先:我之前没有 javascript 或 jquery 经验。

我正在使用 Jquery-tools 在 此页面 (信息图标)和 fancybox 在此页面(“bel mij op”按钮)。

现在,由于我将最后几行代码添加到脚本中以触发工具提示,因此工具提示可以工作,但 fancybox 停止工作。

    $(document).ready(function() {

    $("a.iframe").fancybox({
        'hideOnContentClick': true
    });

    $('#tabs').tabs();

    $("td.tariefinfo img[title]").tooltip({
        'position': "center right"
    });

});

所以我想知道我的代码是否有问题(我还没有真正弄清楚如何使用 firegbug 查看 javascript 错误)或者是因为两个插件不兼容。

提前致谢。

亚伦

first off: i have no prior javascript or jquery experience.

I'm using Jquery-tools to create a tool tip on this page (the info icons) and fancybox to create an overlay on this page (the "bel mij op" buttons).

Now, since i added the last lines of code to my script to trigger the tool tip, the tool tip works but fancybox stops working.

    $(document).ready(function() {

    $("a.iframe").fancybox({
        'hideOnContentClick': true
    });

    $('#tabs').tabs();

    $("td.tariefinfo img[title]").tooltip({
        'position': "center right"
    });

});

So i'm wondering if there's something wrong with my code (i haven't really figured out on how to see javascript errors with firegbug yet) or is it because both plugins are incompatible.

Thanks in advance.

Aaron

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

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

发布评论

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

评论(1

已下线请稍等 2024-10-29 03:04:55

这是 Firebug 中的错误。看起来您尚未在 http://users.telenet.be/ezarto/ezarto/pco/index.php 还没有。

$("td.tariefinfo img[title]").tooltip is not a function

Here is the error in Firebug. Looks like you haven't include the "js/jquery.tools.min.js" file in http://users.telenet.be/ezarto/ezarto/pco/index.php yet.

$("td.tariefinfo img[title]").tooltip is not a function
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文