我只是想在jQuery每個循環的每次迭代後添加一個暫停,我似乎無法弄清楚。jQuery中的等待/暫停/休眠迭代之間的每個循環
$(".item").each(function(i){
var el = this;
var timer = setTimeout(function(){
$(el).trigger("click");
}, 500);
});
這不點火每1/2秒,但在一次,而觸發點擊的所有項目。
我想是這樣的(僞):
$(".item").each(function(i){
$(this).trigger("click");
wait(500); // wait a half second before the next iteration
});
的這種任何的工作方法?
+ 1給你! – 2013-05-01 22:27:03