JavaScript在有效代码上获取错误

时间:2014-04-24 02:06:00

标签: javascript ajax json error-handling

我收到这个加载JSON文件的JavaScript代码时出错:

function loadJSON(){
    var xmlhttp;
    if (window.XMLHttpRequest){
        xmlhttp = new XMLHttpRequest();
    } else {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange = function(){
        if (xmlhttp.readyState==4 && xmlhttp.status==200){
            j = JSON.parse(xmlhttp.responseText);
                    //I get the "Uncaught SyntaxError: Unexpected token }" error on the line above
            jsonLoaded = 1;
            init();
        };
    };
    xmlhttp.open("GET", "things.json", true);
    xmlhttp.send();
};

为什么我会收到此错误?这个相同的脚本几个小时前就开始工作了。

谢谢!

0 个答案:

没有答案