在webOS的Phonegaps应用程序中,我尝试以多种方式显示警告:
// 1.
alert('Mobile number has to be of 10 digits');
// 2.
navigator.notification.alert("alert text!",
function(){}, //callback
'alert Title',
"ok"
);
// 3.
navigator.notification.confirm("alert text!",
function(){}, //callback
'alert Title',
"ok"
);
// 4.
Notification.prototype.confirm('alert text', function(){}, 'alert Title', 'ok');
Phonegaps版本2.1.0
为什么不呢?
答案 0 :(得分:1)
你看过这个页面吗?
http://www.digitaldogbyte.com/2011/05/11/notifications-dashboard-in-phonegap-0-9-5-webos/
如果您正在关注它并且它无法正常工作,则可能是PhoneGap中的回归。警报不适用于webOS应用程序,因为它们应该使用仪表板通知。