我正在尝试解析我的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
中的原始帖子我的代码有什么问题?
答案 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);
});
});