backbutton 直接点击一次就弹出来了,并没有弹出确认弹出框...
// 注册回退按钮事件监听器document.addEventListener("backbutton", onBackKeyDown, false);
//返回键
function onBackKeyDown() {
navigator.notification.confirm(
'按确定退出程序!',// message
onConfirm, // callback to invoke with index of button pressed
'确定要退出程序吗?', // title
'确定,取消' // buttonLabels
);
}
function onConfirm(button) {
if(button==1) navigator.app.exitApp(); //选择了确定才执行退出
}
直接点击一次就弹出来了,并没有弹出确认弹出框是怎么回事
页:
[1]