当用户单击一个按钮时,我正在调用一个 JSON 文件,它是第一次加载,但是当您刷新页面时它失败了,可能是什么问题?这个问题发生在IE7和IE8中,在其他浏览器中很好。
$(document).on('click', '.game-reg-button', function(e){
e.preventDefault();
loadContent();
});
function loadContent(){
$.ajax({
url: "json/content.json",
data: "nocache=" + Math.random(),
type: "GET",
contentType: "application/json",
dataType: "json",
cache: false,
success: function(source){
data = source;
showStartpage(data);
showInfo(data);
},
error: function(data){
alert("Failed to load content");
}
});
}