0

我正在尝试增加 setInterval 或 setTimout 的超时时间。但是,我的全球无法正常工作。我不熟悉javascript。请帮忙!

//What I'm trying to do:

  $(document).ready(function() {
    var joeIncrement=1;
    setInterval(function() {
    joeIncrement++;
    $('#comment_counter').load('get_commentcount.php');
    }, 15000*joeIncrement);
});
4

1 回答 1

2
$(document).ready(function() {
    var joeIncrement=1;
    var interval = function(){
        setTimeout(function() {
            joeIncrement++;
            $('#comment_counter').load('get_commentcount.php');
            interval();
        }, 15000*joeIncrement);
    }
    interval(joeIncrement)
});
于 2013-09-21T21:44:03.820 回答