我是 PhoneGap Build 的新手,我正在尝试开始在 PG Build 中创建应用程序。我试着把所有东西都移过来,但我遇到了麻烦,所以我开始尝试制作一个只显示警告框的简单应用程序。这仍然不起作用,所以我想我会发布我的代码,看看我是否能得到一些帮助。我尝试了多个不同的代码,但它们似乎没有工作。
我正在 iPad mini 上进行测试,并且我拥有 Apple 开发者帐户。该应用程序加载良好 - 唯一的问题是警报框不显示......这是代码:
index.html
<!DOCTYPE html>
<html>
<head>
<title>Notification Example</title>
<script src="phonegap.js"></script>
<script type="text/javascript" charset="utf-8">
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
//Empty
}
function alertDismissed() {
//Do something
}
function showAlert() {
navigator.notification.alert(
'You are the winner!',
alertDismissed,
'Game Over',
'Done'
);
}
</script>
</head>
<body>
<p><a href="#" onclick="showAlert(); return false;">Show Alert</a></p>
</body>
</html>
config.xml
(为了便于阅读,去掉了不相关的代码)
....
<feature name="http://api.phonegap.com/1.0/battery"/>
<feature name="http://api.phonegap.com/1.0/camera"/>
<feature name="http://api.phonegap.com/1.0/contacts"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/media"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/notification"/>
....
任何人都可以帮忙吗?就像我说的,我是 PG 的新手,所以我真的很感激并能得到帮助!谢谢!