jQueryeach 没有回调的可能性吗?

发布于 2024-08-25 07:11:56 字数 204 浏览 10 评论 0原文

我为每个循环创建了一个循环,请检查此示例:

$('.foo').each(function(i){
  //do stuff
});

当此循环结束时是否有可能运行函数?在文档或 Google 上找不到它。

我可以在没有这种解决方案的情况下使其工作,但搜索和使用最简单的方法总是好的。

马蒂·莱恩

I have a loop created with each, check this example:

$('.foo').each(function(i){
  //do stuff
});

Is there any possibility to run a functions when this loop has ended? Couldn't find it on docs or Google.

I can make it work without this kind of solution, but it's always good to search for and use the simpliest methods.

Martti Laine

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

≈。彩虹 2024-09-01 07:11:56

根据要求..

这取决于您在每个循环中调用的内容。您需要为这些(或者至少是您期望最后完成的回调)添加一个回调

As requested..

It depends on what you are calling in your each loop. You need to add a callback to those (or at least the one you expect to finish last

迷迭香的记忆 2024-09-01 07:11:56

这将在循环结束时执行。

$('.foo').each(function(i){
  //do stuff
});

$('.foo').//whatever you want to do. 

This will execute when the loop ends.

$('.foo').each(function(i){
  //do stuff
});

$('.foo').//whatever you want to do. 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文