-3
$(document).ready(function() {
    $("div.panel_button").click(function() {
        $("div#panel").animate({
            height: "223px",
        }, "fast");

        $("div.panel_button").toggle();
    });

    $("div#hide_button").click(function() {
        $("div#panel").animate({
            height: "0px",
        }, "slow");
    });
});
4

1 回答 1

2

您的对象文字中有尾随逗号。改变:

{height: "223px",}
// and
{height: "0px",}

至:

{height: "223px"}
// and
{height: "0px"}

(当然,属性之间的逗号一直是必需的,但是尽管其他浏览器已经接受了尾随逗号一段时间,而且 IE9 很酷,但旧的 IE 不喜欢它。)

于 2012-06-27T11:44:15.137 回答