我有一個使用phonegap構建的移動應用程序,我正在使用jquery mobile。在第一頁,我有鏈接到另一個,href =「page2.html」。。更改頁面時,jquery mobile中的get()方法無法加載
當第二頁加載時,我使用.get()來檢索xml數據並使用xml2json.js將其轉換爲json。如果我將這個頁面作爲索引並在打開應用程序時加載它,頁面就能正常工作,所以我知道該腳本正在工作。但是,通過另一個頁面的鏈接加載時,.get()方法似乎無法加載任何數據。
<script type="text/javascript" src="cordova-2.4.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
<script type="text/javascript" src="js/jquery.xml2json.js"></script>
<script type="text/javascript">
$.get('http://domain.com/app/getfacilities/?org=mysite', function(xml){
var facilities = $.xml2json(xml);
for (i=0; i<=facilities.facility.length; i++){
var locName = facilities.facility[i].name;
var id = facilities.facility[i].id;
$("#fieldList").append("<li><a href='#'>" + locName + "</a></li>").listview('refresh');
}
});
</script>
<script type="text/javascript">
app.initialize();
</script>
那些腳本標記(在你的page2.html中),它們是HEAD或BODY的一部分嗎? – Gajotres
它們位於/ body標籤正上方。 –