我正在为Android和iOS编写一个phonegap应用程序,我在我的应用程序中使用各种函数处理后退按钮:
$(document).unbind("backbutton");
$(document).bind("backbutton", myFunc);
某些功能使用window.location.replace(" XXXX.html");为了重定向到新页面。
这一切都在使用Ripple Emulator的浏览器中完美运行但是当我使用genymotion或Android设备时,我得到一些奇怪的结果,应用程序将移动到错误的页面或退出应用程序时它应该返回页面。
有什么想法吗? :(