1
當我將jQuery Tools添加到我的頁面時,鏈接上的懸停效果不起作用。沒有它,它的工作。懸停不能使用jQuery工具 - 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>
你有什麼錯誤嗎?你能提供一個鏈接到你的網頁? – Nalum