当javascript函数完全加载时,如何在jQuery测试?
我想使用一个gif,它显示加载,同时加载javascript函数,并在函数完全加载时隐藏它?
最佳答案
$(function(){
$("#loadingGIF").show();
WaitForFunction();
});
function WaitForFunction()
{
if (!$.isFunction(FUNCTION_TO_WAIT_ON_HERE)) {
setTimeout( WaitForFunction,100);
return;
}
Function_Loaded();
}
function Function_Loaded(){
$("#loadingGIF").hide();
}