我在 phoneGap Android 中开发了一个应用程序。
在我的应用程序中,后退按钮无法正常工作。
我使用此代码导航表单:
document.addEventListener("backbutton", handleBackButton, true);
function handleBackButton()
{
if (typeof(navigator) != 'undefined' && typeof(navigator.app) != 'undefined' && typeof(navigator.app.backHistory) == 'function')
{
history.go(-1);
navigator.app.backHistory();
}
else
{
history.go(-1);
//navigator.app.backHistory();
}
}
它的工作如下:
例如我有三个页面,a.html
我
正在从到导航到到b.html
c.html
a.html
b.html
c.html
问题
c.html
当我点击后退按钮时,它从到导航b.html
,
再次重复该过程,它不会去a.html
。