开发者

SetInterval Javascript Function Applied to Ajax + Jquery Causes Page to Flicker on Reload?

开发者 https://www.devze.com 2023-03-05 11:12 出处:网络
The function below will make an Ajax call to load data from a mySQL database: function displayAll() { clearInterval ( stopCompoundingInt ); //stop current Interval

The function below will make an Ajax call to load data from a mySQL database:

    function displayAll() {                 
    clearInterval ( stopCompoundingInt ); //stop current Interval
        sendAjax('search', 'q', function(responseText){
        $("#txtResp").html(responseText);
            stopCompoundingInt = setInterval ( function(){  // start a new interval with below conditions:
                sendAjax('search', 'q', function(responseText){
                $("#txtResp").html(responseText);
                });
       }, 5000 );
     })
}

Here is one place where it is applied:

var eInput = "";
stopCompoundingInt = 0;
$('#searchbar').live('keyup',function() {
    eInput = $(this).val();
    if (eInput.length > 0) {

        clearInterval ( stopCompou开发者_开发问答ndingInt );
        $('#display_all').hide();
        sendAjax('search', eInput, function(responseText){
             $("#txtResp").html(responseText);
              stopCompoundingInt = setInterval ( function(){
                     sendAjax('search', eInput, function(responseText){
                            $("#txtResp").html(responseText);
                     });
              }, 5000 );
       })
    } else {
        displayAll(); // run the above function to show all events
    }
});

The function is supposed to run on an interval of 5 seconds if there is no text in the textbox with ID= "searchbar"

Does anyone have any suggestions that will improve the performance of this function?

Many Thanks,

Taylor


You might want try jQuery .load() function and see jQuery Timers plugin. I believe reusing their solution is quite good and quite simple solution.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号