可能重复:
规避同源策略的方法
我正在尝试从此 url 获取 xml 数据
http://www.rabodirect.com.au/includes/figures.xml
这是我的简单代码:
$(document).ready(function ()
{
$.ajax({
url: 'http://www.rabodirect.com.au/includes/figures.xml',
type: 'GET',
dataType: 'xml',
timeout: 10000,
error: function () {
alert('Error loading XML document');
},
success: function(xml)
{
alert(xml);
}
});
});
但是会出现错误警报。
有什么想法,为什么我不能得到xml数据?
谢谢