0

我的代码(在全窗口中启动)。

我的 JS 代码:

$(document).ready(function () {
    $("#play_buttton").hover(
        function () {
            $('#play_button').css({ "height": "240px", "width": "250px" });
        },
        function () {
            $('#play_button').css({ "height": "225px", "width": "220px" });
        }
    );
});

我认为这段代码一定是造成了问题。

问题:当我将鼠标悬停在图像(#play_button)上时,什么也没有发生,它的高度和宽度也没有改变。谁能告诉我如何解决这个问题。

谢谢。

4

2 回答 2

7

不会play_buttonplay_buttton

$(document).ready(function () {
    $("#play_button").hover(   // Here not play_buttton
        function () {
            $(this).css({ "height": "240px", "width": "250px" });
        },
        function () {
            $(this).css({ "height": "225px", "width": "220px" });
        }
    );
});

请参阅此示例FIDDLE

你也.animate可以像这个FIDDLE2

于 2013-09-02T11:23:52.843 回答
1

$("#play_butt* t *on").hover处的拼写错误

于 2013-09-02T11:44:45.633 回答