以下は、助けが必要なスニペットです。すべてのスパンが繰り返されたら、関数を呼び出したいと思います。たとえば、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");
};