重複の可能性:
同一生成元ポリシーを回避する方法
この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データを取得できないのですか?
ありがとう