悬停时的 jquery 工具提示问题

发布于 2024-11-04 08:05:44 字数 288 浏览 3 评论 0原文

我是 Jquery 的新手,试图实现 Jquery 工具提示来弹出餐厅的电话号码

首先,我试图将它放在我的菜单栏中,但未能实现它,你可以在我的页面脚本代码中看到它... 然后我尝试在页面上的 3 个位置上添加内容,但遇到了很多问题,当我将鼠标悬停在其中一个“立即提交”按钮上时,我的 nivoslider 消失了,

只需单击“立即提交”按钮即可亲自查看 这是该页面的链接 点击此处

I am a novice in Jquery and trying to implement Jquery tooltip to pop up phone number of a resturant

First i was trying to put it in my MENU BAR and was failed to implement it, you can see it in my page scripting code...
Then i tried to put in on 3 places on the page and having problems a lot, my nivoslider goes away when i hover on one of my SUBMIT NOW Button

Just click the SUBMIT NOW button and see for your self
here is the link for the page
Click HERE

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

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

发布评论

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

评论(1

从来不烧饼 2024-11-11 08:05:44

尝试将您的 $(document).ready(function(){}); 调用合并为一个(我在源代码中数了至少两个)并将 $(".download_now ").tooltip({effect: 'slide'}); 进入其中。如果您仍然遇到问题,您应该考虑使用 jQuery.noConflict,特别是对于 Nivo Slider。理想情况下,您不应混合 $(document).ready(function(){});$(window).ready(function(){});

Try to combine your $(document).ready(function(){}); calls into one (I counted at least two in your source-code) and put $(".download_now").tooltip({ effect: 'slide'}); into it. If you still have problems, you should look into using jQuery.noConflict, particularly for Nivo Slider. You should ideally not be mixing $(document).ready(function(){}); and $(window).ready(function(){}); either.

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