1

嗨,我尝试使用Docs Phonegap Notification中的简单通知代码创建示例 index.html 。

我压缩了索引文件并将其上传到 build.phonegap.com 2.9 版本。该应用程序已成功安装在我的 iPad(iOS 5)上,但当我单击显示警报时没有任何反应。我还尝试在我的 Sencha Touch 2 应用程序上添加 phonegap 2.9.0,我将其构建为本机并将其安装在我的设备上,但应用程序挂在应用程序加载指示器上。

索引.html代码:

<!DOCTYPE html>
<html>
  <head>
    <title>Notification Example</title>

    <script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
    <script type="text/javascript" charset="utf-8">

    // Wait for device API libraries to load
    //
    document.addEventListener("deviceready", onDeviceReady, false);

    // device APIs are available
    //
    function onDeviceReady() {
        // Empty
    }

    // alert dialog dismissed
        function alertDismissed() {
            // do something
        }

    // Show a custom alertDismissed
    //
    function showAlert() {
        navigator.notification.alert(
            'You are the winner!',  // message
            alertDismissed,         // callback
            'Game Over',            // title
            'Done'                  // buttonName
        );
    }

    </script>
  </head>
  <body>
    <p><a href="#" onclick="showAlert(); return false;">Show Alert</a></p>
  </body>
</html>

任何帮助是极大的赞赏。

更新:

当我在 zip 文件中添加 config.xml 时,一切正常。并在将其上传到 build.phonegap 之前,在 body 标记内添加了 phonegap.js 脚本。

谢谢

4

1 回答 1

0

当我在 zip 文件中添加 config.xml 时,一切正常。并在 body 标签内添加了 phonegap.js 脚本。

谢谢

于 2013-09-17T02:12:47.887 回答