2

我需要从这里解析 json 输出http://kalpa.freeoda.com/news/news_feed.php

以下是我编写的代码,

$.getJSON("http://kalpa.freeoda.com/news/news_feed.php", function(data){
        alert('Received news");
});

但是当我运行此代码时,我没有收到警报。

任何支持使这项工作得到高度赞赏。

4

2 回答 2

3

尝试这个:-

现场演示

http://jsfiddle.net/YFtvU/9/

$.ajax({
            url: 'http://query.yahooapis.com/v1/public/yql',
                data: {
                    q: "select * from json where url ='http://kalpa.freeoda.com/news/news_feed.php'",
                    format: "json"
                },
                dataType: "jsonp",
            success: function (data) {

                alert(JSON.stringify(data));


            },
            error: function (result) {
                alert("Sorry no data found.");
            }
        });
于 2013-04-12T18:35:09.383 回答
1

尝试这个

现场演示

            $.getJSON("http://kalpa.freeoda.com/news/news_feed.php?callback=?", null, function (data) {
                alert(JSON.stringify(data));
            });
于 2013-04-12T18:38:32.313 回答