gpt4 book ai didi

jquery - 满足条件时如何退出 $.each 函数

转载 作者:行者123 更新时间:2023-12-03 22:08:41 24 4
gpt4 key购买 nike

满足条件时如何退出 $.each 循环?我不想进一步迭代该集合。

$(vehicles).each(function() {
if (this["@id"] === vehicleId[0]) {
vehicle = this;
}
});

我尝试使用 break;return; 语句,但看起来执行并没有在此时停止。任何想法将不胜感激。

最佳答案

返回 false 相当于跳出 $.each 循环。所以在你的例子中:

   if (this["@id"] === vehicleId[0]) { vehicle = this; return false; }

关于jquery - 满足条件时如何退出 $.each 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3142262/

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