编辑:在评论中回答 - 我如何在评论中投票给答案?谢谢!
我一直试图实现这一点无济于事 - 我不知道出了什么问题 - 它在 jsfiddle 中完美运行,但在我的实际 html 代码中却没有......我认为这与我如何实现它有关。如果这有点初级,我很抱歉,但我对 jQuery 很陌生。这是 HTML 代码(包括 jQuery 代码片段):
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="s3Slider.js"></script>
</head>
<body>
<script>
$(document).ready(function(){
$('a').mouseenter(function(){
$(this).animate({
color: '#ff0000'
}, 1000);
}).mouseout(function(){
$(this).animate({
color: '#000000'
}, 1000);
});
});
</script>
<a href = "http://google.com" class = "homeLink">Google</a>
</body>
</html>
非常感谢任何反馈、意见和建议!巴乔