我有这个 jQuery AJAX 函数,它在 html 中的每个页面上加载对 .JS 的调用
我想放一个 if 语句来检查我要预加载的文件是否已经在缓存中。这是为了避免脚本将在每个页面上运行其所有内容。一旦一切都在缓存中,我们就不需要了。并且运行它很耗时!
注意:我希望它出现在每个页面上,因为我希望在客户登陆网站的任何地方进行预加载。(不仅是主页)
这是 preload.js:
(function() {
在这里插入 if 语句,应该是这样的:
if(xhr[src="myslide.swf"].status = 200);
alert('cached');
或(概念)如果 myslide.swf 在缓存中,则什么也不做;别的...
}else{
setTimeout(function(){
var xhr = new XMLHttpRequest();
xhr.open('GET', 'myslide.js');
xhr.send('');
var xhr = new XMLHttpRequest();
xhr.open('GET', 'myslide.swf');
xhr.send('');
var xhr = new XMLHttpRequest();
xhr.open('GET', 'images.xml');
xhr.send('');
var xhr = new XMLHttpRequest();
xhr.open('GET', 'param.xml');
xhr.send('');
$.ajax({
type: "POST",
url: "/javascript/getnames.php",
data: "$list",
cache: true,
dataType:"json",
success: function(result) {
Object.size = function(obj) {
var size = 0, key;
for (key in obj) {
if (obj.hasOwnProperty(key)) size++;
}
return size;
};
// Get the size of an object
var size = Object.size(result);
var i = 0;
for(i=0; i<size; i++) new Image().src = "/site/" + result[i];
/*alert(result[X]);*/
}
}); //closes the ajax call
var splashArray = new Array();
// Load the Splash XML file and assign each image within to an array
$.get('/javascript/preloadGallery.xml', function(xml) {
$('image', xml).each(function (i) {
splashArray.push($(this).attr("src"));
});
work_with_splash();
});
function work_with_splash () {
Object.size = function(obj) {
var size = 0, key;
for (key in obj) {
if (obj.hasOwnProperty(key)) size++;
}
return size;
};
// Get the size of an object
var size = Object.size(splashArray);
var i = 0;
for(i=0; i<size; i++) new Image().src = splashArray[i];
/*alert(result[X]);*/
} //closes the spalsh Call
}, 500);
};
})();
所有脚本都完美运行,我唯一想念的是 if 语句。
谢谢您的帮助。