setinterval - javascript reset an interval - Stack Overflow

I need to be able to call this function to reset the interval.I know this has been asked before.But t

I need to be able to call this function to reset the interval.

I know this has been asked before. But the answer given at Javascript - Reset setInterval back to 0 is not working for me.

Here is the code that I tried:

function startTimer(){
    clearInterval(interval);    
    var interval = setInterval(function(){
        advanceSlide();
    }, 5000);
};

I call that at the beginning of my page to start a slideshow that changes every 5 seconds. and I use this code to call it again, witch I expected would reset that 5 seconds.

onclick=startTimer();>

The onclick does one other thing too, but this is what is not working. The other action takes place but the interval does not change, its still going based off the same portion of 5 seconds that was left before I clicked.

I need to be able to call this function to reset the interval.

I know this has been asked before. But the answer given at Javascript - Reset setInterval back to 0 is not working for me.

Here is the code that I tried:

function startTimer(){
    clearInterval(interval);    
    var interval = setInterval(function(){
        advanceSlide();
    }, 5000);
};

I call that at the beginning of my page to start a slideshow that changes every 5 seconds. and I use this code to call it again, witch I expected would reset that 5 seconds.

onclick=startTimer();>

The onclick does one other thing too, but this is what is not working. The other action takes place but the interval does not change, its still going based off the same portion of 5 seconds that was left before I clicked.

Share Improve this question edited May 23, 2017 at 11:54 CommunityBot 11 silver badge asked Aug 14, 2012 at 21:36 Eric JonesEric Jones 1541 gold badge1 silver badge12 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

You need to declare the variable outside the function...

var interval;

function startTimer() {
    clearInterval(interval);    
    interval = setInterval(advanceSlide, 5000);
}

Otherwise it is lost when the function exits.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743634080a4481855.html

相关推荐

  • setinterval - javascript reset an interval - Stack Overflow

    I need to be able to call this function to reset the interval.I know this has been asked before.But t

    19小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信