gpt4 book ai didi

jquery - 如何摆脱 .each() 迭代

转载 作者:行者123 更新时间:2023-12-03 22:30:04 28 4
gpt4 key购买 nike

Possible Duplicate:
Nested jQuery.each() - continue/break

这是我的代码:

var steps = $("div#f");
steps.each(function () {
var s = $(this);
var cs = $(this).find(".Cm");
cs.each(function () {
var tc = $(this);
var err = tc.attr("h");
if (err == false) {
this.c = err;//this.c is a global variable
return this.c;
break;//here is where the error is being thrown
}
else {
this.c = {"Eval": err, "S": s, "Cm": tc};
return this.c;
}
});
});

我正在使用.each()迭代来收集值。我认为它的功能就像一个循环,所以我认为我使用 break声明爆发。这引发了“非法”错误。有谁知道如何摆脱each迭代?

最佳答案

使用返回 false。看看这个资源:http://gavinroy.com/jquery-tip-how-to-break-out-of-each

关于jquery - 如何摆脱 .each() 迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9588610/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com