0
在Phonegaps申請的webOS我嘗試以多種方式來顯示警報:的PhoneGap應用的webOS,警報不工作
// 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
爲什麼不?