我使用$ .getScript(url)加載外部js。現在,直到js被加載,我想要顯示百分比加載器(顯示加載了多少js)。我該如何做到這一點。如何知道外部js是否加載,並將百分比加載器,直到那個時候
$(document).on('click', 'div#play', function(){
$(this).hide();
$('div#stop').css('display', 'block');
$('div#processing_load').show();
var url = 'https://www.gstatic.com/swiffy/v5.4/runtime.js';
$.getScript(url)
.done(function(){
$('div#processing_load').hide();
$('#swiffycontainer').css('display', 'block');
$('.landing-banner').css('display', 'none');
stage = new swiffy.Stage(document.getElementById('swiffycontainer'), swiffyobject);
stage.start();
stage.setBackground(null);
})
})
在這裏我想顯示加載之前完成percent.Thanks提前。歡迎任何幫助/建議。