我有我的網站上這樣的代碼:
$.ajax({
type: "GET",
url: 'http://www.rp-online.de/cmlink/top-news-1.2513701',
cache : false,
dataType: "xml",
success: function(xml) {
$(xml).find('title').text();
console.log($(xml).text());
var as = $(xml).find('description').eq(1).text();
$('#av').append(as);
},
error:function (xhr, textStatus, thrownError){
console.log(textStatus);
$("#result").html(textStatus);
}
});
現在,此代碼的工作,其用於從其他網站(RSS源)獲取數據。
一切看起來不錯,在桌面,IOS,但不是在Android上。 當我打開Chrome和移動仿真時,我在控制檯中看到這個: parseerror。 有人知道解決方案嗎? 謝謝。