1

如何销毁同一元素上创建的动画?

例如:我有动画

$('#sortable').animate({
    paddingTop: 85
}, 100);

在同样的行动中,我想摧毁它,因为我不再需要它了。就像是:

$('#sortable').animate('destroy');

但它不起作用。

4

1 回答 1

4

只需使用stop()

$('#sortable').stop(true);// first argument removes all animations in the queue
于 2012-05-31T07:41:44.297 回答