AJAX Interval Refresh?

前端 未结 5 1856
余生分开走
余生分开走 2020-12-08 23:57

I\'m trying to make an AJAX function update about 30 seconds. I have a simple version of that done, here is the code.

var refInterval = window.setInterval(\'         


        
5条回答
  •  無奈伤痛
    2020-12-09 00:40

    just put the setTimeout into your successhandler and it should work like charm

    var update = function() {
        $.ajax({
            type : 'POST',
            url : 'post.php',
            success : function(data){
                $('.voters').html(data);
                var refInterval = window.setTimeout('update()', 30000); // 30 seconds
            },
        });
    };
    
    update()
    

提交回复
热议问题