我知道IE7&存在缓存问题。 IE8在使用AJAX加载JSON时,但我认为我已经解决了将缓存设置为false的问题。我的页面中的JSON有时无法仅在这些浏览器中加载。可能有什么不对?
var language = "de";
$.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");
}
});
有什么想法吗?谢谢!