Dreamweaver 没有说我有任何语法错误,那么为什么我的背景颜色没有改变?
jQuery:
$(function () {
$("#contact").hover(function () {
$("#contactform").stop().fadeIn(500);
$(this).stop().animate({
height: "260px",
background: "blue"
});
}, function () {
$("#contactform").stop().fadeOut(500);
$(this).stop().animate({
height: "20px",
});
});
});