gpt4 book ai didi

android - 后退按钮确认退出应用程序 android + phonegap + jquery

转载 作者:行者123 更新时间:2023-11-29 14:19:03 24 4
gpt4 key购买 nike

如何在 Phonegap 在线系统中使用 jQuery Mobile 处理 Android 中的物理后退按钮?我想确认退出应用程序(是 - 否)。我尝试了很多方法,但没有任何效果。

最佳答案

试试这个:

document.addEventListener("deviceready", onDeviceReady, false);

function onDeviceReady() {
document.addEventListener("backbutton", onBackKeyDown, false); //Listen to the User clicking on the back button
}

function onBackKeyDown(e) {
e.preventDefault();
navigator.notification.confirm("Are you sure you want to exit ?", onConfirm, "Confirmation", "Yes,No");
// Prompt the user with the choice
}

function onConfirm(button) {
if(button==2){//If User selected No, then we just do nothing
return;
}else{
navigator.app.exitApp();// Otherwise we quit the app.
}
}

关于android - 后退按钮确认退出应用程序 android + phonegap + jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18184497/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com