我是 phonegap 的新手。在我的应用程序中,我想显示警报。为此,我使用了以下代码,
navigator.notification.alert("PhoneGap is working");
但它不起作用。我的总 html 代码是,
<html>
<head>
<script type="text/javascript" charset="utf-8" src="js/cordova-2.0.0.js"></script>
<script>
function inti()
{
alert("inti");
document.addEventListener("deviceready", onDeviceReady, true);
}
function onDeviceReady() {
alert("on device ready!!!!");
navigator.notification.alert("PhoneGap is working");
}
</script>
</head>
<body onload="inti()">
<p id="demo">System date</p>
<input type="button" onclick="noti()" value="Date" />
</body>
</html>
我得到了Cannot call method 'alert' of undefined i got this error
。任何人都可以指导我解决这个问题。提前致谢 .....