PhoneGap 和 WP7 不想加载代码

发布于 2025-01-03 21:02:09 字数 285 浏览 0 评论 0原文

我为 WP7 设置了 Visual Studio Express 和 PhoneGap 1.4.1。 我能够运行示例模板,因此我开始将应用程序代码从 Eclipse/Android 移动到 VSE www 文件夹。 JQ/JQM 似乎没有加载。因此,为了排除故障,我创建了一个新项目并添加了一个警报(“hello”);内部函数 onDeviceReady() 和警报对话框未显示。

这是怎么回事?

PhoneGap WP7

I setup Visual Studio Express and PhoneGap 1.4.1 for WP7.
I am able to run the sample template so I starting to move my app code from Eclipse/Android to the VSE www folder. The JQ/JQM doesn't seems to load. So to troubleshoot, I create a new project and put a alert("hello"); inside function onDeviceReady() and the alert dialog did not show.

What is wrong here?!

PhoneGap WP7

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望笑 2025-01-10 21:02:09

啊,我明白了。 WP7(和 iPhone)比 Android 更严格,需要警报回调才能工作

请尝试以下操作:

function alertDismissed() {
    // do something or nothing
}

function showAlert() {
    navigator.notification.alert(
        'The Message!',
        alertDismissed,      
        'The Title',
        'ButtonName'
    );
}



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

Ah I see. WP7 (and iPhone) are stricter than Android and need a Alert Callback for it to work

Try the following:

function alertDismissed() {
    // do something or nothing
}

function showAlert() {
    navigator.notification.alert(
        'The Message!',
        alertDismissed,      
        'The Title',
        'ButtonName'
    );
}



<body>
    <p><a href="#" onclick="showAlert(); return false;">Show Alert</a></p>
</body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文