0
我有一個讀取XML文件並將其解析爲數據結構的應用程序。 XML大多數情況下都很好。但是,有些時候,XML中會包含無效字符(即非中斷空間)。此代碼適用於Chrome和Firefox。但是,它一直在Internet Explorer中返回parsererror(在IE11中測試過)。有沒有解決這個問題的方法?Ajax GET請求在Internet Explorer中爲包含無效字符的XML返回「parsererror」
$.ajax({
type: "GET",
url : path,
dataType: "xml",
success: parseXml,
complete: setupAC,
error: function(err,status,error) {
alert("Error reading XML File: "+(status));
}
});
它仍然表現相同 – nyamuk91