gpt4 book ai didi

javascript - 加载 gif 直到页面完全加载

转载 作者:行者123 更新时间:2023-12-02 16:22:54 25 4
gpt4 key购买 nike

我正在尝试显示加载 GIF 并显示它直到页面完全加载。

这是我的 jQuery/Javascript 代码:

$(document).ready(function(){
$('#myTab a').on('load', function (e) {
e.preventDefault();
$(this).tab('show');
},onLoadSomeFunction());
}

onLoadSomeFunction() 引导我的页面获取一些值并将它们加载到其中。

如何在所有页面加载过程结束之前显示我的加载 gif?

最佳答案

    please try this:- 
$(document).ready(function(){
$('#myTab a').on('load', function (e) {
e.preventDefault();
$(this).tab('show'); or $('#load_img/message').show();// div having loading image/message and initially property hidden

},onLoadSomeFunction()); or success : function(html){
//your functionality after success
$('#load_img/message').hide(); // hide the loading image/message
}
}

关于javascript - 加载 gif 直到页面完全加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28942359/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com