如何执行相同的setInterval()

时间:2016-05-15 20:07:06

标签: javascript jquery html

我的setInterval()有问题,我的代码是:

    var1=0;
function addNum(){
    var1++;
    $('.number').text(var1);
}



$(function() {
    $('.number').text(var1);

    jQuery('#box').on('touchstart touchmove', function(e) {

        mytimer = setInterval(function(){ addNum() }, 500);

    });
    jQuery('#box').on('touchend touchcancel', function(e) {
        alert('lift up');
        window.clearInterval(100);    

      });
    });

我不能clearInterval() 如何在下次使用相同的setInterval?

有人知道,如何重复使用它?

BR, 基督教

1 个答案:

答案 0 :(得分:0)

将您的清除功能更改为window.clearInterval(mytimer);