私は何日も前からこれを尋ねてきました。これは現在キューに入っていると思うので、もう一度投稿します。誰か助けてください。
ERROR the connection to the server was unsuccessful. (file ///android_asset/www/index.html) pure phonegap app
コードは次のとおりです。
<html>
<head>
<link rel="stylesheet" href="jquery-mobile/jquery.mobile.css">
<link rel="stylesheet" href="jquery-mobile/jqm-docs.css">
<script src="jquery-mobile/jquery.js"></script>
<script>
$(document).bind("mobileinit", function(){
$.mobile.loadingMessageTextVisible = true;
});
</script>
<script src="jquery-mobile/jquery_mobile_old.js"></script>
<script>
$(document).on("click", ".show-page-loading-msg", function() {
var $this = $( this ),
theme = $this.jqmData("theme") || $.mobile.loadingMessageTheme,
msgText = $this.jqmData("msgtext") || $.mobile.loadingMessage,
textonly = !!$this.jqmData("textonly");
$.mobile.showPageLoadingMsg(theme, msgText, textonly);
})
.on("click", ".hide-page-loading-msg", function() {
$.mobile.hidePageLoadingMsg();
});
</script>
</head>
<body>
<div data-role="header"><h1>My App</h1></div>
<a href="http://xyz.php" style="text-decoration:none">
<button class="show-page-loading-msg">xyz</button>
</a> <a href="http://xyz.php" style="text-decoration:none">
<button class="show-page-loading-msg">xyz</button>
</a> <a href="http://xyz.php" style="text-decoration:none">
<button class="show-page-loading-msg">xyz</button>
</a> <a href="http://xyz.php" style="text-decoration:none">
<button class="show-page-loading-msg">xyz</button>
</a> <a href="http://xyz.php" style="text-decoration:none">
<button class="show-page-loading-msg">xyz</button>
</a> <a href="http://xyz.php" style="text-decoration:none">
<button class="show-page-loading-msg">xyz</button>
</a> <a href="http://xyz.php" style="text-decoration:none">
<button class="show-page-loading-msg">xyz</button>
</a> <a href="#" style="text-decoration:none">
<button class="show-page-loading-msg">Outstanding Analysis For Creditors</button>
</a>
しかし、ブラウザでは完全に機能しています。
問題は、電話でこれを開こうとするとエラーが発生することです。Dreamweaver CS6 を使用してhttps://build.phonegap.com/でビルドしています。