0

我只是在学习 jQuery,我想知道为什么我的小脚本不起作用。它扩大了,但我似乎无法让它缩小。

$('.strech').click(function(){
    $(this).animate({
        width: '210px'
    }, 500 );
});

$('body').click(function(e) {
    if (!$(e.target).is('.strech')) {
        ('.strech').animate({
            width: '185px'
        }, 500 );
    }
});
4

0 回答 0