PhoneGap开发出现 Application Error - The connection to the server was unsuccessful.

在PhoneGap开发时,出现在跳转页面的时候会出现:Application Error - The connection to the server was unsuccessful. (file:///android_asset/www/index.html).

解决方法:

将页面跳转的超链接

<a href="homepage.html">···</a>

改为:

<a onclick="javascript:window.location.href='homepage.html'">···</a>



你可能感兴趣的:(JavaScript,android,error,application,application,PhoneGap)