我们假设您正在使用js预加载器(Preload.JS)加载一堆超重图像,并且在回调中您拥有$(文档).ready函数。
示例代码:
var queue = new createjs.LoadQueue();
queue.loadManifest([
"img/1.jpg",
"img/2.jpg",
"img/3.png"
]);
queue.on("complete", preloadComplete, this);
function preloadComplete() {
$(document).ready(function() {
//jquery stuff
});
}
预加载是否可能需要很长时间才能错过就绪功能?
答案 0 :(得分:4)