我试图从队列中接收回调。我想在队列完成时调用一个函数。如何才能做到这一点? (我现在已经在网上搜索了一段时间,没有成功)
divs.each(function (index) {
var thisDiv = $(this);
var thisDelay = 75 * index;
thisDiv.delay(thisDelay).queue(function () {
$(this).removeClass('show');
$(this).dequeue();
});
// For example 'return: true' / call a new function.
});
由于