当我将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>
答案 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