JSON仅在IE7中加载一次& 8

时间:2013-04-03 12:14:52

标签: jquery ajax json internet-explorer-8 internet-explorer-7

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

    }

0 个答案:

没有答案