我遇到以下情况:
$(".toggle").click(function() {
var currentId = $(this).attr('id');
$(this).find(".loadingDiv").show();
$(this).find(".matchingsDiv").load("<%= matches_companies_url %>?id=" + currentId, null, function(){
$('.loadingDiv').hide();
});
return false;
});
matches.js.erb
<% @matchings.each_with_index do |match, index| %>
<%= (render :partial => 'companies/matching', :locals => {:match => match, :project => @project}) %>
<% end %>
以上代码有效。这是一个小问题:如何错开每个matching
的呈现?
即。我可以立即进行第一次匹配渲染,200ms后的下一次匹配,400ms后的第三次匹配等等吗?