1

我的问题是警报永远不会显示在 navigator.notification.alert...上,但是当我这样做时会显示window.alert...

请看下面的代码:

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
    document.addEventListener("deviceready", onDeviceReady, true);
    function onDeviceReady() {
        // Empty
    }
    function myFunction()
    {
       /* navigator.notification.alert(
                'You are the winner!',  // message
                alertDismissed,         // callback
                'Game Over',            // title
                'Done'                  // buttonName
        );*/             // NOT WORKING
        window.alert  ('Hello World!') ; // WORKS !!

    }
</script>
</head>
   <body>
   <button onclick="myFunction()">Try it</button>
   </body>
   </html>
4

2 回答 2

2

要使用通知,您必须安装通知插件。在您的 phonegap 根目录中导航并键入:

phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git

从现在开始,您应该可以使用通知警报了。:)

于 2013-10-09T15:40:27.683 回答
1

你放了吗

   <plugin name="Notification" value="org.apache.cordova.Notification"/>

在 app/res/xml/config.xml 中 ??

于 2013-10-10T05:41:24.260 回答