我试图为Android和Windows手机创建一个phonegap(cordova)应用程序。
我正在使用$.Get
jQuery方法从WS获取数据(html格式)。
在我的Android设备上它一切都很好但是在Windows手机和台式电脑浏览器(firefox)中我的回答是空的。
这是我的代码:
$(document).ready(function (){
$("#resultBlock").html('<div style="position: relative;left:45%;"><img src="images/ajax-loader.gif" alt="Se incarca..."></div>');
$.get("http://www.xxxx.xx/WS/WsClasament.php", {}, function(data) {
if(!data)
$("#resultBlock").html("Connection Problem");
else
$("#resultBlock").html(data);
})
});
我使用这个jQuery库
<script type="text/javascript" src="css/jquery-1.4.2.min.js" ></script>
有人能帮助我吗?