使用Jquery解析Json文件?不工作

时间:2013-05-11 05:33:44

标签: javascript jquery json cordova

我正在尝试解析我的phonegap应用程序中的json文件。在Stackoverflow上搜索后,我发现了这段代码

这是我的代码

  $.getJSON('http://shobingg.com/cms/sites/php/message.json',
  function(data)
  {    
      $.each(data, function(i, item) {
          alert (item.message);
      });
      //$("#div-my-table").append("</table>");
  });

您可以看到here

中的原始帖子

我的代码有什么问题?

1 个答案:

答案 0 :(得分:0)

试试这个:

$(document).ready(function() {
    var url =  "http://www.shobingg.com/cms/sites/php/message.json";
    $.getJSON(url + "?callback=?", null, function(data) {
        console.log(data);
    });
});

摘自jsonp with jquery