4

我正在尝试遍历一个数组。但是,我想在每个数组值之间添加 15 秒的延迟。这会将值 1 写入控制台,然后倒计时 15 秒并将值 2 写入控制台,依此类推。

我不确定该怎么做。到目前为止,我的代码只是一次在控制台上输出数字 15 到 1,没有实际倒计时,也没有数组值。

大批

["l3", "l4", "l5", "l6", "l7", "l8", "l9", "l10", "l11", "l12", "l13", "l14", "l15", "l16"] 

代码

var adArray = [];
// get links with class adfu
var adfuClass = document.getElementsByClassName('adfu');
for (var i = 0; i < adfuClass.length; i++) {
    var ids = adfuClass[i].id
    var newIds = ids.replace(/tg_/i, "l");
    adArray.push(newIds);
}
// get links with class ad30
var ad30Class = document.getElementsByClassName('ad30');
for (var i = 0; i < ad30Class.length; i++) {
    var ids = ad30Class[i].id;
     var newIds = ids.replace(/tg_/i, "l");
     adArray.push(newIds);
}
// get links with class adf
var adfClass = document.getElementsByClassName('adf');
for (var i = 0; i < adfClass.length; i++) {
    var ids = adfClass[i].id;
     var newIds = ids.replace(/tg_/i, "l");
     adArray.push(newIds);
}
// loop through array with all new ids
for (var i = 0, l = adArray.length; i < l; i++) {
    var counter = 15;
    var countDown = setTimeout(function() {
        console.log(counter);
        if (counter == 0) {
            console.log(adArray[i]);
        }
        counter--;
    }, 1000);
}
4

3 回答 3

12
// loop through array with all new ids
var i = 0, l = adArray.length;
(function iterator() {
    console.log(adArray[i]);

    if(++i<l) {
        setTimeout(iterator, 15000);
    }
})();

像这样的东西?

于 2012-06-09T23:24:08.663 回答
2

这种类型的迭代器有一个非常简单的模式,使用闭包范围来存储一个计数器和一个运行迭代器loop的嵌套函数。该函数实际上会迭代计数,因此不需要or /构造。我经常使用这种模式,而且效果很好。looper()setTimeout()looper()loopfordowhile

编辑:修改条件以检查loop > 1,而不是loop > 0,记录Loop count: 0。这可以调整,从技术上讲,looper()这里运行了 16 次。

(function(){
    var loop = 15;

    var looper = function(){
        console.log('Loop count: ' + loop);

        if (loop > 1) {
            loop--;
        } else {
            console.log('Loop end.');
            return;
        }

        setTimeout(looper, 15000);
    };

    looper();
})();

http://jsfiddle.net/userdude/NV7HU/2

于 2012-06-09T23:34:54.417 回答
1

使用此功能可以更轻松地运行:

function loopArr(arr, callback, time, infinite){
    console.log('loop run');
    var i=0,
        total=arr.length-1;
    var loop=function(){
            // RUN CODE
            console.log('loop arr['+i+']');
            callback( arr[i] );
            if (i < total ) {
                i++;
            } else { // LOOP END
                console.log('loop end!');
                if(!infinite) return;
                i=0 //restart
            }
            setTimeout( loop, time);
    }
    loop()
}

要使用此功能,请执行以下操作:

loopArr(arr, callback, time, infinite)

在哪里:

  • arr是我们需要循环的数组,它可以是一个 jQuery 选择器
  • 回调是执行的函数,返回一个参数,即所选项目
  • time是延迟所需的超时时间
  • 如果我们需要代码永远重复自己,则将无限设置为truefalse

使用animate.css的示例

var imgShowHide = function(elm){
    var elm = $(elm); // select the item arr[i] via jQuery
    elm.css('animation-duration','2s').show()
        .addClass('animated bounceInRight')
        .one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){
            elm.removeClass('animated bounceInRight')
                .addClass('animated bounceInLeft')
                .one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){
                    elm.removeClass('animated bounceInLeft').hide()
                })
        });
}

// RUN
loopArr( $('#images > img'), imgShowHide, 4000, true);
于 2015-11-13T21:13:55.823 回答