首先加载本地html:
String url ="file:///android_asset/www/login-mobile.html";
this.loadUrl(url);
phonegap 在 login-mobile.html 中成功加载。
但是...当我单击 login-mobile.html 中的登录按钮时,然后使用代码触发单击事件:
document.location = "http://192.168.84.86:8080/static/mobile-demo/phonegap/phonegap.html";
or
$("#loginForm").attr("action","http://192.168.84.86:8080/static/mobile- demo/phonegap/phonegap.html");
document.loginForm.submit();
然后 phonegap 加载以下错误:
D/CordovaLog(13261): http://192.168.84.101:8686/maw-home/res/js/cordova- android.js: Line 3558 : JSCallback Error: Request failed.
据我所知,XHR(cordova/plugin/android/callback)有问题。但我不知道为什么?
多谢。