我收到这个加载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();
};
为什么我会收到此错误?这个相同的脚本几个小时前就开始工作了。
谢谢!