phonegap监听物理返回键

来源:互联网 发布:雷云登陆 网络不可用 编辑:程序博客网 时间:2024/05/16 09:52
document.addEventListener("backbutton", function(e){    if($.mobile.activePage.is('#homepage')){        e.preventDefault();        navigator.app.exitApp();    }    else {        navigator.app.backHistory()    }}, false);

0 0