1

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",
        });

    });
});
4

1 回答 1

1

仅更改颜色的正确标签应该是“背景颜色”

$(this).stop().animate({
    height: "260px",
    'background-color': "blue"
});

还要确保你已经包含了 jQuery UI。

于 2013-03-14T22:21:35.777 回答