jQuery qTip在jquery-1.4.2下不起作用?

时间:2010-09-28 10:40:08

标签: jquery plugins qtip

我正在使用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>

1 个答案:

答案 0 :(得分:4)

是的,所以看起来最新版本的qTip存在一个错误,即bit of a discussion about it。其中一位评论的人建议使用其他version (build, whatever) of the plugin

I did just that and slapped it into jsFiddle我现在可以看到工具提示了,所以也许您应该下载revision 55并使用它。

希望有所帮助。