0

一段时间后如何停止它?例如 2 秒。谢谢

$('img').mouseover(function() {
    var image = this;
        loop = setInterval(function() {
            if (i < images.length - 1) {
                i++;
                $(image).attr('src',images[i]);
            } else {
                i = 0;
                $(image).attr('src',images[i]);
            } 
        }, 40); 

  });
4

2 回答 2

2

尝试像这样使用。

window.setTimeout(function(){
   clearInterval(loop);
}, 2000);
于 2013-09-23T09:35:14.950 回答
2

使用setTimeout()clearInterval()

setTimeout(function(){
   clearInterval(loop);
},2000);
于 2013-09-23T09:35:21.933 回答