我正在使用手机间隙来开发应用程序。当我在html页面中显示警报时我正在做警报(“下载完成”)。但它显示标题为index.html。任何人都可以帮助我解决这个问题。
答案 0 :(得分:0)
我相信你可以使用notification
。请在deviceready
之后致电。
请参阅此处:http://docs.phonegap.com/en/2.2.0/cordova_notification_notification.md.html
在config.xml上添加
<feature name="Notification">
<param name="ios-package" value="CDVNotification"/>
</feature>
然后,不要使用下面的代码调用alert();
。
navigator.notification.alert(
"This is a message.", // message
alertDismissed, // callback
'Error!', // title
'OK' // buttonName
);
function alertDismissed() {
// do something
}