1
當我將鼠標懸停在按鈕上時,背景顏色不變。。jQuery中的動畫不起作用
我的jQuery:
<script type="text/javascript" src="/js/jquery.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$(".reject").hover(function() {
$(this).animate({background: '#000'}, 1000);
}, function(){
$(this).animate({background: '#333'}, 1000);
});
});
</script>
<style type="text/css">
.reject{padding:10px;font-size:20px;background:#F00;}
</style>
我的HTML:
<button class="reject">Reject</button>
我缺少什麼?
http://stackoverflow.com/questions/190560/jquery-animate-backgroundcolor –
請格式化你的代碼,以便其他人可以閱讀並幫助你。 –
這裏的第一個評論是答案。 – maxedison