0

下面url是我的代码 m 试图使用 jquery 隐藏和显示该部分,并且在 css 中也有上下图像,它可以完美地显示和隐藏,但它没有从上到下更改图像又从下到上?

我怎么能用jquery做到这一点? http://jsfiddle.net/mohsinali89/mspFH/

4

1 回答 1

6
$(document).ready(function () {
    $("#hideShow").click(function () {
        $(this).toggleClass('hide show');
        //some other stuff here
    });
});
于 2013-05-29T13:13:58.933 回答