不能让$ .getJSON工作

时间:2015-12-11 18:15:54

标签: javascript jquery json

我在使用jquery函数getJSON

时遇到了一些问题
.ground {
  text-align: center;
}
.ground .line {
  display: inline-block;
}

这不起作用。它甚至没有进入console.log("加载的JSON")语句

然后我手动尝试在控制台中执行此操作:

as far as I can see, it goes clean through without any trouble

任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

如果没有命中成功回调并且来自服务器的调用是200,那么你有一个解析错误,jQuery吃掉并且没有告诉你。

$.getJSON(jsonFile, function(data){
    console.log("loaded JSON")
}).error( function () {
    console.log(arguments);
});