我正在使用Caolan的出色的。我正在执行一系列的功能。在第一个函数中,我有一个条件应该跳过本系列函数的所有其余部分,直接转到最终回调: function one (next) { // skip all the other functions and go to final callback // do stuff }, //
我不能使用return,因为它只从each()函数中退出,并且仍然运行main函数中的其余代码。我试过exit,它似乎工作得很好。下面是我的代码: $(position + ' .item_div').each(function() {rest of the code here... this gets executed ONLY if each() fails... ...........
}