javascript – 如果有多个动画元素,如何知道jquery效果何时结束
作者:互联网
给出以下示例:如果5< li>找到元素后,回调会发出5次警报……
有没有一种简单的方法可以找出动画何时真正结束并且只需点燃一次?
$(this).parent().siblings('li').slideUp(500,function(){
alert
});
解决方法:
$.when($(this).parent().siblings('li').slideUp(500))
.then(function() {
alert('Finished!');
});
当docs:
Description: Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.
标签:jquery,javascript,callback,jquery-deferred,jquery-animate 来源: https://codeday.me/bug/20190609/1208131.html