ユーザーがボタンをクリックしたときに 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");
}
});
}