我正在创建一个iOS Phonegap应用程序。我正在使用http://docs.phonegap.com/en/1.0.0/phonegap_notification_notification.md.html
中的脚本// Show a custom alert
function showAlert() {
navigator.notification.alert(
"Do you really want to delete this item?", // message
alertDismissed, // callback
"Delete", // title
"Ok, Cancel" // buttonName
);
}
// alert dialog dismissed
function alertDismissed() {
// alert("Test this");// write your necessary code here
}
我在html中调用了.js文件
我遇到的问题很奇怪。我点击按钮查看我的应用程序中的弹出窗口,没有任何反应。但如果我关闭并重新打开应用程序,我会看到弹出窗口,我以前应该看到它!
有人可以帮忙!