0

我尝试使用 jquery 将数据发布到外部网站以获取 json 数据

问题是我的响应功能不起作用,那么如何解决呢?

我的代码示例

$.getJSON("http://externalweb.com/data.php?callback=?",
    function(result) {
        // this function is not work :(
        $("#result").html("test");
    }
);
4

1 回答 1

0

JSON 不支持从外部 URL 获取数据

但是,您可以使用 JSONP。

这是另一位网络作者(不是我)对此的解释:

http://www.jquery4u.com/json/jsonp-examples/

于 2012-08-25T17:34:29.223 回答