Exit from app when click button in android phonegap?

前端 未结 7 1745
时光取名叫无心
时光取名叫无心 2020-12-28 11:13

I am new to phonegap. I have prepared one sample application. My application has 2 pages, the first page has one button, when clicked the second page will open. It is workin

7条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-28 12:19

    There are different ways to close the app, depending on:

    if (navigator.app) {
        navigator.app.exitApp();
    } else if (navigator.device) {
        navigator.device.exitApp();
    } else {
        window.close();
    }
    

提交回复
热议问题