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
});
これの作業方法はありますか?