電話ギャップを使用したアプリ開発は初めてで、サーバー側のコーディングについてもあまり知りません。私はゲームを作る方が好きなので、私の質問が基本的なものであるか、答えがよく知られている場合は、ご容赦ください。aspx ページを使用してサーバーからデータを取得して表示する Web アプリを既に用意しています。iOS で phonegap を使用すると、このデータを表示できます。しかし、Androidで同じものを使用すると機能しません。どんな助けでも大歓迎です。ページをフェッチするためのjQueryを作成するために使用している私のindex.htmlは
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name = "format-detection" content = "telephone=no"/>
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width;" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello Cordova</title>
</head>
<body>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"> </script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<script type="text/javascript" src="cordova-2.0.0.js"></script>
<script type="text/javascript">
$("body").load('http://203.115.112.5/f1/xhtml/daywiselk.aspx?comicid=0');
</script>
</body>
繰り返しますが、jQuery についての知識はありませんが、スタック オーバーフローに関する別の質問からこれを得ましたが、これは iOS で機能します。しかし、Androidで同じページを読み込もうとすると、画面に何も表示されません。