Javascript 警报弹出窗口在 IOS 中无法正常工作
我有针对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了这样的问题,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!