0

在 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 版

为什么不呢?

4

1 回答 1

1

你看过这个页面吗?

http://www.digitaldogbyte.com/2011/05/11/notifications-dashboard-in-phonegap-0-9-5-webos/

如果您遵循它并且它不起作用,那么它可能是 PhoneGap 中的回归。警报不适用于 webOS 应用程序,因为它们应该使用仪表板通知。

于 2012-10-08T01:34:44.117 回答