Javascript 警报弹出窗口在 IOS 中无法正常工作

发布于 2024-12-07 14:52:14 字数 208 浏览 1 评论 0原文

我有针对 Android 和 IOS 的 PhoneGap 应用程序构建。警报框在 Android 中运行良好,但在 Iphone 中没有收到警报。请帮忙。

这段代码适用于 droid:

else {
  navigator.notification.alert('Invalid Username or Password!');
}

I have phonegap app build for android and IOS. The alert-box is working great in Android but I am not getting alert in Iphone. Please help.

This piece of code works good for droid:

else {
  navigator.notification.alert('Invalid Username or Password!');
}

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

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

发布评论

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

评论(1

始终不够爱げ你 2024-12-14 14:52:14

我遇到了这样的问题,phonegap 不适用于 iOS 和 Android。

就我而言,发生这种情况是因为phonegap.js与Android和iOS不同,所以我必须将我的www文件夹移动到iOS应用程序并保留iOS的phonegap.js而不是使用Android的phonegap.js

我通过创建一个“ HelloWorld”iOS + Phonegap 应用程序并将其phonegap.js 复制到我的实际应用程序中。

之后Phonegap又开始工作了!再见!

I had a problem like that, phonegap wasn't working with iOS and working with Android.

In my case, that happened because the phonegap.js is different from Android's to iOS, so I had to move my www folder to iOS app and keep the iOS phonegap.js instead of using Android phonegap.js

I did that by creating a "HelloWorld" iOS + Phonegap app and copying his phonegap.js to my actual app.

After that, Phonegap started to work again! See ya!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文