我在使用 phonegap 和 jQuery 构建的移动应用程序中使用此代码我想显示来自服务器的图片,但我无法集成showPageLoadingMsg
功能,我不相信这种类型的 Ajax 调用有用且强大。所以我真的想知道我应该使用什么类型的 Ajax 调用以及如何showPageLoadingMsg()
在我的 Android 手机应用程序中使用功能。
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();