最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - clearInterval is not working - Stack Overflow

programmeradmin1浏览0评论

I have a div that is above something I want to showcase, and I have the setInterval working, but the clearInterval isn’t firing when it reaches 2 loops.

I have this:

window.setInterval(play_ani_clickthese, 3000);
var fade_count = 0;

function play_ani_clickthese() {
    $("#click_these").fadeIn(1000).delay(1000).fadeOut(1000);
    fade_count += parseInt('1');

    if(fade_count == 2) window.clearInterval(play_ani_clickthese);
}

But when the 'fade_count' reaches 2, it just keeps going.

Any pointers to what I'm doing wrong?

I have a div that is above something I want to showcase, and I have the setInterval working, but the clearInterval isn’t firing when it reaches 2 loops.

I have this:

window.setInterval(play_ani_clickthese, 3000);
var fade_count = 0;

function play_ani_clickthese() {
    $("#click_these").fadeIn(1000).delay(1000).fadeOut(1000);
    fade_count += parseInt('1');

    if(fade_count == 2) window.clearInterval(play_ani_clickthese);
}

But when the 'fade_count' reaches 2, it just keeps going.

Any pointers to what I'm doing wrong?

Share Improve this question edited Feb 28, 2013 at 11:31 franzlorenzon 5,9436 gold badges37 silver badges58 bronze badges asked Jul 30, 2011 at 22:29 DavidDavid 2,2423 gold badges31 silver badges49 bronze badges 2
  • 2 clearInterval takes the ID of the interval, not a function. It is described in the documentation: developer.mozilla/En/Window.clearInterval – Felix Kling Commented Jul 30, 2011 at 22:34
  • 3 clearInterval is a javascript function, not specific to the jQuery framework at all. – Lepidosteus Commented Jul 30, 2011 at 22:36
Add a ment  | 

1 Answer 1

Reset to default 12

Use it like this:

var id = window.setInterval(play_ani_clickthese, 3000);
clearInterval(id);
发布评论

评论列表(0)

  1. 暂无评论