0
我在使用phonegap和jQuery構建的移動應用程序中使用此代碼我想從服務器顯示圖片,但無法集成showPageLoadingMsg
函數,我不相信這種類型的Ajax調用是有用的和強大的。所以我想知道我應該使用什麼類型的Ajax調用,以及如何在我的Android手機應用程序中使用showPageLoadingMsg()
函數。jquery mobile ajax loader
server = "http://monserveur.com/upload.php";
var wid = $(window).width();
if (server) {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState == 4){
alert('ready');
if (xmlhttp.status == 200 ) {
alert('200');
document.getElementById('ousa').innerHTML = xmlhttp.responseText;
}
else {
document.getElementById('ousa').innerHTML = "Error retrieving pictures from server.";
}
}
};
xmlhttp.open("GET", server+"?wid="+wid, true);
xmlhttp.send();
嗨!你在控制檯上有任何錯誤嗎? – Littm
「我不相信這種類型的Ajax調用是有用的和強大的」......真的嗎?,這是每個和任何JS ajax _wrapper_的核心/引擎**,你會發現。 – cube