jQuery qTip 在 jquery-1.4.2 下不起作用?
我正在使用 jQuery qTip 插件,但它不适用于最新版本的 jquery(1.4. 2)
它与 1.3.2 一起工作正常。
原因是什么?
非常感谢
更新:
这是最简单的例子,它不起作用
...
<head>
<script type="text/javascript" src="javascript/jquery-1.4.2.js" ></script>
<script type="text/javascript" src="javascript/jquery.qtip-1.0.0-rc3.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("a").qtip({content: 'some text here'});
});
</script>
</head>
<body>
<a >example</a>
</body>
i'm using jQuery qTip plugin, but it doesn't work with latest version of jquery(1.4.2)
it works fine with 1.3.2.
What is the reason?
Thanks much
UPDATE:
here is the simplest example, which doesn't work
...
<head>
<script type="text/javascript" src="javascript/jquery-1.4.2.js" ></script>
<script type="text/javascript" src="javascript/jquery.qtip-1.0.0-rc3.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("a").qtip({content: 'some text here'});
});
</script>
</head>
<body>
<a >example</a>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,最新版本的 qTip 看起来有一个错误,有一个 对此进行一些讨论。回复评论的人之一建议使用不同的 插件的版本(版本,无论什么)。
我就是这样做的,并将其放入 jsFiddle 现在我可以看到工具提示,所以也许你应该下载修订版 55并用它来代替。
希望有帮助。
Right so it looks like there is a bug with the latest version of qTip, theres a bit of a discussion about it. One of the people that comments back suggested using a different version (build, whatever) of the plugin.
I did just that and slapped it into jsFiddle and I can now see the tooltip, so perhaps you should download revision 55 and use that instead.
Hope that helps.