我有一个使用 Ajax 加载 JSON 内容的微型站点,它第一次在 IE7 和 IE8 中运行,但是如果我刷新这些浏览器它会失败,我已经签入了提琴手并且我没有收到任何错误。可能是某处的代码错误吗?
var firstBackgroundImage = new Image();
firstBackgroundImage.src = "img/bg-img.jpg";
firstBackgroundImage.onload = function () {
$('#loading-image').hide();
$(".wrap").fadeIn(300);
loadContent();
};
function loadContent(){
$.ajax({
url: "json/" + language + "/content.json",
data: "nocache=" + Math.random(),
type: "GET",
cache : false,
contentType: "application/json",
dataType: "json",
success: function(source){
data = source;
showStartpage(data);
showInfo(data);
},
error: function(data){
alert("Failed to load content");
}
});
}
没有出现“加载内容失败”警报,它只是显示了我的加载图像,可能存在任何可能的故障吗?有人遇到过同样的问题吗?
谢谢!