我已经能够在页面加载之前成功预加载图像库但是想知道如何为自定义cursor.cur文件做同样的事情,因为它无法使用下面的图像方法,因为它无法理解.cur扩展名?
// Image Preloader
var pictures [
"a.jpg",
..
"z.jpg"
];
for (var i=0;i < pictures.length; i++){
var img = new Image()
img.src = pictures[i];
img.onload = function(){
updateProgress();
}
}
解决方法:
使用AJAX .get()加载ico文件并忽略响应.响应应该缓存在浏览器中.就像是:
$.get('/favicon.ico', function() {
alert('Loading of ICO file completed!');
// Do other processing here
});