1

这是我的代码:

index.html:
    ...
      <script type="text/javascript" charset="utf-8" src="main.js"></script>
    </head>
    <body onload="init();"></body>
    ...

main.js:
    function onBackPressed(e) {
        console.log("onBackPressed()");
        var answer = confirm("Do you want to exit?");
        console.log(answer);
        if (answer) {
            navigator.app.exitApp();
        }
    }
    function init() {
        ...
        document.addEventListener("backbutton", onBackPressed, false);
        ...
    }

当我第一次退出应用程序时,一切似乎都很好。问题是当我下次启动应用程序时,确认对话框立即返回 false 并且对话框保持可见。因此,当我单击“确定”时,什么都不会发生。

这是 logcat 的输出:

04-11 16:16:26.444: D/PhoneGapLog(18356): onBackPressed()
04-11 16:16:26.444: D/PhoneGapLog(18356): file:///android_asset/www/main.js: Line 49 : onBackPressed()
04-11 16:16:26.444: I/Web Console(18356): onBackPressed() at file:///android_asset/www/main.js:49
04-11 16:16:26.584: D/PhoneGapLog(18356): false
04-11 16:16:26.584: D/PhoneGapLog(18356): file:///android_asset/www/main.js: Line 51 : false
04-11 16:16:26.584: I/Web Console(18356): false at file:///android_asset/www/main.js:51

这是phonegap或android中的错误吗?还是我做错了什么?

我将 Nexus One 与 android 2.3.6 和 phonegap 1.4.1 一起使用(1.5 版有后退按钮事件问题)。

4

1 回答 1

3

在 PhoneGap 中,confirm 是一个异步回调。请参阅api 文档

由于立即返回,变量answer将始终为 false。

代码应该更像:

    // process the confirmation dialog result
function onConfirm(button) {
    alert('You selected button ' + button);
}

// Show a custom confirmation dialog
//
function showConfirm() {
    navigator.notification.confirm(
        'You are the winner!',  // message
        onConfirm,              // callback to invoke with index of button pressed
        'Game Over',            // title
        'Restart,Exit'          // buttonLabels
    );
}
于 2012-04-11T18:54:43.817 回答