欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MUI之安卓点击返回键提示退出应用APP 等....

程序员文章站 2022-06-13 21:13:05
...

在页面中放入即可  

    var first = null;  
    mui.back=function(){
    if(!first){  
         first = new Date().getTime();  
             mui.toast('再按一次退出应用');  
                setTimeout(function(){  
                    first = null;  
                },2000);  
              } else {  
                  if(new Date().getTime() - first < 2000){  
                     plus.runtime.quit();  
                   }  
              }  
       };