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

色を変更するための正しいタグは「background-color」にする必要があります

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

また、jQuery UI が含まれていることを確認してください。

于 2013-03-14T22:21:35.777 に答える