$ .getJSON()不从url获取json文件

时间:2013-09-24 11:11:12

标签: jquery getjson

我试图通过在JSON文件中存储键:值来打印值。 JSON文件位于URL cdn.localhost

代码:

var jsonFile = "http://cdn.localhost/json/states.demo.json&jsoncallback=?";
                jQuery.getJSON(jsonFile, {format: 'json'}).done(function(data) {
                    jQuery.each(data, function(sKey, sVal) {
                         console.log(sValue);
                    });

但遗憾的是$ .getJSON方法无法读取JSON文件。

我的代码是对的吗?请建议我如何解决这个问题。

0 个答案:

没有答案