$(window).load(function() {
$('#loading').hide();
$('#container').show();
});
在我的所有php文件中,我都有上面提到的代码,用于显示加载图标,直到页面加载。例如:如果我执行index.php
,则会显示加载图标,直到index.php
完全加载。如果重定向时重定向到example.php
,则不显示加载图标,其完全空白。如果它被完全重定向,则显示加载图标,直到该页面完全加载。
预期: 当重定向到下一页时,同时我也需要加载图标来显示。
那么如何在页面转换之间显示加载图标?
答案 0 :(得分:3)
诀窍是在卸载页面时立即启动加载图标。然后,当加载新页面时,必须立即再次显示加载图标,只有当新页面完全加载时,才能隐藏图标。
// Show the icon immediatly when the script is called.
$('#loading').show();
// show the icon when the page is unloaded
$(window).on('beforeunload', function(event) {
$('#loading').show();
});
// hide the icon when the page is fully loaded
$(window).on('load', function(event) {
$('#loading').hide();
});