最佳答案
我有一些代码:
$(xml).find("strengths").each(function() {
//Code
//How can i escape from this block based on a condition.
});
我如何从“每个”基于条件的代码块逃脱?
如果我们有这样的东西:
$(xml).find("strengths").each(function() {
$(this).each(function() {
//I want to break out from both each loops at the same time.
});
});
有没有可能从内部的“每个”函数中跳出两个“每个”函数?
# 19.03.2013
如果你想继续而不是爆发
return true;