可能重复:
jquery 中的 XML 解析似乎对我不起作用
Access-Control-Allow-Origin 错误将 jQuery Post 发送到 Google API
我正在尝试从 Google 的天气 API 加载数据。当我运行此代码时:
$.ajax({
type: "GET",
url: "http://www.google.com/ig/api?weather=13210",
dataType: "xml",
success: function(xml) { }
});
我收到以下消息:XMLHttpRequest
无法加载http://www.google.com/ig/api?weather=13210。Access-Control-Allow-Origin 不允许 Origin null。
为什么我会收到此消息?我是新手将 XML 加载到 jquery 中。