Loading bar while script runs

前端 未结 1 444
暗喜
暗喜 2020-12-09 13:42

I have a php script which takes about 10 seconds to run because it is pulling in data and storing it in the db, I want to display a loading bar whilst this script is running

1条回答
  •  死守一世寂寞
    2020-12-09 14:06

    At first you need to call the script using an Ajax request. All jQuery ajax methods offer function callbacks that are called when the call is completed. You can show the progress bar when you make the request and hide it, when it is finished:

    $("#MyProgressBar").show();
    $("#placeholder").load(myurl, function() {
      $("#MyProgressBar").hide();
    });
    

    You could also use a plug-in like BlockUI.

    0 讨论(0)
提交回复
热议问题