navigator.app.exitApp();使用cordova对话框插件时不起作用

时间:2016-11-14 16:51:23

标签: cordova plugins dialog exit confirm

我想使用navigator.app.exitApp();用对话框退出我的cordova应用程序。我还安装了cordova对话框插件。

这是我的代码:

<script>
    function onConfirm(buttonIndex) {
alert('You selected button' + buttonIndex);
}


navigator.notification.confirm(
'Do you want to exit app?', // message
 onConfirm,            // callback to invoke with index of button pressed
'Exit',           // title
['Yes','No']     // buttonLabels
);


     onConfirm(buttonIndex) {
if (buttonIndex==2){
navigator.app.exitApp();
}
}
</script>


<button onclick="onConfirm(); return false;">Exit</button>

但它不起作用。

我该如何解决?

感谢高级。

1 个答案:

答案 0 :(得分:1)

Mohsen Alk试试这已经过检查,它正在运作

Name