我在用户点击按钮时调用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");
}
});
}