悬停无法与 jQuery 工具一起使用 - jQuery

发布于 2024-12-01 04:05:59 字数 527 浏览 2 评论 0原文

当我将 jQuery 工具 添加到我的页面时,链接上的悬停效果不起作用。没有它,它也能工作。

<script src="jquery.js"></script>
<script src="jquery.color.js"></script>
<script src="http://cdn.jquerytools.org/1.2.5/jquery.tools.min.js"></script>
<script>
$(function() {
$("a").hover(
function() {
    $(this).animate({color: "white"}, 400);
}, function() {
    $(this).animate({color: "black"}, 400);
});
});
</script>

When I add jQuery Tools to my page, hover effect on links doesn't work. Without it, it works.

<script src="jquery.js"></script>
<script src="jquery.color.js"></script>
<script src="http://cdn.jquerytools.org/1.2.5/jquery.tools.min.js"></script>
<script>
$(function() {
$("a").hover(
function() {
    $(this).animate({color: "white"}, 400);
}, function() {
    $(this).animate({color: "black"}, 400);
});
});
</script>

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

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

发布评论

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

评论(1

新人笑 2024-12-08 04:05:59

如果您切换颜色插件和工具

http: //jsfiddle.net/pxfunc/gJjAZ/

问题是:这会使工具提示不起作用吗? :)

If you switch the color plugin and the tools <script> tags the animation works

http://jsfiddle.net/pxfunc/gJjAZ/

Question will be: does that make the tooltip not work? :)

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