1

私はcordova2.1.0を使用してAndroidアプリケーションを開発しています。これでは、アラートの[OK]ボタンをクリックすると、コールバック関数でnavigator.notification.alertを使用しています。アラート ポップアップが表示されますが、[OK] をクリックしてもコールバック関数が呼び出されません。私は cordova2.0.0 バージョンを使用して動作しましたが、cordova2.1.0 では動作しません。私を助けてください。私が使用しているコードは次のとおりです。

  function WriteReviewAlert(){
        navigator.notification.alert(
            'Alert message.',  // message
             gotoSettings,         // callback
            'Test',            //title
            'OK'                  // buttonName
        );
}


  function gotoSettings()
{
    $.mobile.changePage( 'settings.html', { transition: "slide"} );
}
4

1 に答える 1

1

これをチェックしてください。

<!DOCTYPE html>
    <html>
      <head>
        <title>Notification Example</title>
        <script type="text/javascript" charset="utf-8" src="cordova-1.9.0.js"></script>
        <script type="text/javascript" charset="utf-8">

            document.addEventListener("deviceready", onDeviceReady, false);
            // PhoneGap is ready       
            function onDeviceReady() {

            }

        function onConfirm(button) {
            alert('...');
        }

                function showConfirm() {
            navigator.notification.confirm(
            'You are the best!',  // message
            onConfirm,              // callback to invoke with index of button pressed
            'TEST',            // title
            'OK'          // buttonLabels
        );
        }
    </script>
  </head>
  <body>
    <p><a href="#" onclick="showConfirm(); return false;">Show Confirm</a></p>
  </body>
</html>
于 2013-01-08T06:06:11.713 に答える