jQueryeach 没有回调的可能性吗?
我为每个循环创建了一个循环,请检查此示例:
$('.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据要求..
这取决于您在每个循环中调用的内容。您需要为这些(或者至少是您期望最后完成的回调)添加一个回调
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
这将在循环结束时执行。
This will execute when the loop ends.