gpt4 book ai didi

javascript - 电话间隙 : Back button not working

转载 作者:行者123 更新时间:2023-11-28 08:23:10 26 4
gpt4 key购买 nike

我已经创建了一个对我的应用程序中使用的后退按钮的警报。

这是我所做的

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 return to Menu ?", 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{
window.location.replace("Menu.html");
}
}

但问题是,当我第一次使用手机上的后退按钮时,它会显示警报,但是当单击后退按钮两次时,它会执行与后退按钮相同的操作。它返回到上一页而不是停留在当前页面。警报框上的两个按钮(是或否)都可以正常工作。

我想删除单击后退按钮两次时的警报并留在同一页面上。我该怎么做?

最佳答案

你有包含以下js和css吗?

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<script type="text/javascript" src="cordova.js"></script>

关于javascript - 电话间隙 : Back button not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22755650/

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