我的问题是警报永远不会显示在 navigator.notification.alert
...上,但是当我这样做时会显示window.alert
...
请看下面的代码:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
document.addEventListener("deviceready", onDeviceReady, true);
function onDeviceReady() {
// Empty
}
function myFunction()
{
/* navigator.notification.alert(
'You are the winner!', // message
alertDismissed, // callback
'Game Over', // title
'Done' // buttonName
);*/ // NOT WORKING
window.alert ('Hello World!') ; // WORKS !!
}
</script>
</head>
<body>
<button onclick="myFunction()">Try it</button>
</body>
</html>