jQuery各函数如何强制连续运行
使用 JQuery .each function() 但它同时对所有元素进行操作。相反,我希望它是连续的。因此,一旦完成第二个功能,就对一个功能进行操作,依此类推。
$('#fader').children().hide();
$('#fader').children().each(function(){
$(this).fadeIn(2000,function(){
$(this).delay(4000);
$(this).fadeOut(2000);
});
});
Using JQuery .each function() yet it is operating on all elements at the same time. Instead I want it to be sequential. So operating on one function once complete the second etc.. etc..
$('#fader').children().hide();
$('#fader').children().each(function(){
$(this).fadeIn(2000,function(){
$(this).delay(4000);
$(this).fadeOut(2000);
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用如下递归函数来完成此操作:
You can do it with a recursive function like this: