悬停不起作用

时间:2011-08-22 18:22:37

标签: jquery hover

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

<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>

2 个答案:

答案 0 :(得分:1)

得到一些分号!

$(function() {
$("a").hover(
function() {
    $(this).animate({color: "white"}, 400);
}, function() {
    $(this).animate({color: "black"}, 400);
});
});

答案 1 :(得分:0)

将'cancelDefault'属性设置为false。 http://flowplayer.org/tools/tooltip/index.html