3

本地 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);
       })
   }
4

1 回答 1

0

Android 系统对文件名区分大小写。是 .XML 而不是 .xml 造成了问题。谢谢

于 2013-10-04T11:10:19.423 回答