Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 jquery 将数据发布到外部网站以获取 json 数据
问题是我的响应功能不起作用,那么如何解决呢?
我的代码示例
$.getJSON("http://externalweb.com/data.php?callback=?", function(result) { // this function is not work :( $("#result").html("test"); } );
JSON 不支持从外部 URL 获取数据
但是,您可以使用 JSONP。
这是另一位网络作者(不是我)对此的解释:
http://www.jquery4u.com/json/jsonp-examples/