JavaScript Loading Screen while page loads

后端 未结 6 1265
无人共我
无人共我 2020-11-30 18:17

This is a little hard to explain, So I\'ll try my best

So while a HTML page loads, I\'d like there to be a cool loading screen going on. When it finishes loading, I

6条回答
  •  自闭症患者
    2020-11-30 18:26

    If in your site you have ajax calls loading some data, and this is the reason the page is loading slow, the best solution I found is with

    $(document).ajaxStop(function(){
        alert("All AJAX requests completed");
    });
    

    https://jsfiddle.net/44t5a8zm/ - here you can add some ajax calls and test it.

提交回复
热议问题