我为 Windows 移动应用程序(phonegap)使用了以下功能来处理后退按钮导航功能。
function onBackKeyDown() {
var currentPageId = $.mobile.activePage.attr('id');
if(currentPageId == 'contact-us' || currentPageId == 'about-us' || currentPageId == 'location-map' || currentPageId == 'services'){
$.mobile.changePage("index.html", {
transition : "slide",
reverse : true,
changeHash : false
});
}else{
navigator.app.exitApp();
}
}
如果当前页面不是索引,我想来索引。否则退出应用程序。似乎 navigator.app.exitApp() 在 windows phone 7 中不起作用。有没有解决这个问题的解决方案。