Jquery-tools和fancybox冲突?
首先:我之前没有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Firebug 中的错误。看起来您尚未在 http://users.telenet.be/ezarto/ezarto/pco/index.php 还没有。
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.