gpt4 book ai didi

android - Phonegap 检测到 backButton 事件失败

转载 作者:搜寻专家 更新时间:2023-11-01 08:52:32 26 4
gpt4 key购买 nike

当我使用 https://build.phonegap.com/ 在 android 中构建我的应用程序时,我处理后退按钮检测的代码不起作用。

尽管我使用了以下代码来做到这一点:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" href="css/jquery.mobile-1.4.1.min.css">
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery210.js"></script>
<script type="text/javascript" src="js/engine2.js"></script>
<script type="text/javascript" src="js/jqm141.js"></script>
<script type="text/javascript">
function onLoad(){
document.addEventListener('deviceready', function() {
navigator.splashscreen.show();
document.addEventListener("backbutton", ShowExitDialog, false);
}, false);
}

function ShowExitDialog() {
if (navigator.notification) {
navigator.notification.confirm(
("Are you sure ?"),
alertexit,
'Exit',
'Yes,No'
);
}
}

function alertexit(button){
if(button=="1" || button==1){
navigator.app.exitApp();
}
}
</script>
</head>

<body onLoad="onLoad()">

...

</body>
</html>

按下后退按钮时,我的应用程序没有任何响应。如何给后退按钮添加检测功能??

最佳答案

使用这个简单的代码...

 document.addEventListener("deviceready", appReady, false);
function appReady()
{
document.addEventListener('backbutton', function(e){
if (confirm("Press a button!"))
{
alert("You pressed OK!");
navigator.app.exitApp();
}
else
{
alert("You pressed Cancel!");
}
}, false);
}

关于android - Phonegap 检测到 backButton 事件失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21793938/

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