以下是我需要帮助的片段。一旦迭代了所有跨度,我想调用一个函数。举个例子,如果我有 8 个跨度,在第 8 个跨度的函数运行后,我该如何调用nextFunction()
?
$('#div1').animate({ opacity: '0.2' }, 500, function () {
$('span').each(function () {
//do something.
});
nextFunction();
});
function nextFunction() {
alert("called after the last .each() has occurred");
};