<script type="text/javascript">
$(function(){
$("div").hover(
function(){$(this).css("backgroundColor","#ff0000");},
function(){$(this).animate({"backgroundColor":'#ffffff'},300);}
);
});
</script>
<div style="width:200px; height:20px; cursor:pointer; border:solid 1px #cccccc;">ssss</div>
你animate使用有误
更改为$(this).animate({ BackgroundColor:'#ffffff'},300);
这样就不会报错误了!
同上