我正在使用 1.8.2 jQuery 的 ajax 加载 rss 提要,这是来自另一台服务器的 xml 文档,我无法控制所述服务器。
$.ajax({
type: 'GET',
url: 'http://example.com/feed',
contentType: "application/xml",
dataType: 'xml',
success: function(data){
alert(data);
}
});
调用函数后,我不断收到跨域错误。我错过了什么?