0
在我的頁面我使用下面的代碼,它顯示錯誤消息「錯誤加載XML文檔」。我怎樣才能找出實際導致錯誤的原因?jquery ajax找出是什麼導致錯誤加載XML文檔
$.ajax({
url: 'document.xml',
type: 'GET',
dataType: 'xml',
timeout: 1000,
error: function(){
alert('Error loading XML document');
},
success: function(xml){
// do something with xml
}
});
看到如果XML文件existe – mgraph 2012-02-07 16:00:45