我正在测试 android 的本机警报:
showAlert: function (message, title) {
if (navigator.notification) {
navigator.notification.alert(message, null, title, 'OK');
} else {
alert(title ? (title + ": " + message) : message);
}
},
initialize: function() {
var self = this;
//Phonegap alert
self.showAlert('Store Initialized', 'Info');
//Stadard Alert
alert('Store Initialized');
}
showAlert() 和 alert() 产生完全相同的警报窗口。那么为什么要使用 phonegap 原生的警报功能呢?