在 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 版
为什么不呢?