本地 Xml 文件(excel.xml)位于根文件夹的 xml 文件夹中。它在 Firefox、IE 中运行良好。但不适用于 Android 4.0。我正在使用phonegap进行构建。请协助。
function LoadDB(isToolTip) {
$.support.cors = true;
$.mobile.allowCrossDomainPages = true;
QuestionDB = new Array();
$.ajax({
url: 'xml/EXCEL.xml',
dataType: 'xml',
type: 'GET'
}).done(function (data) {
QuestionDB = $(data).find('Record');
// alert(QuestionDB.length + " : " + data)
if (isToolTip)
showTip();
}).fail(function (jqXHR, txtStatus, trownError) {
alert("failed : " + txtStatus);
alert(jqXHR.status);
alert(trownError);
alert(jqXHR.responseText);
})
}