私は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
この問題を克服するために誰かが私を導くことができますか?前もって感謝します .....