gpt4 book ai didi

javascript - cordova-2.0.0.js 不能在 android 上使用 phonegap

转载 作者:太空狗 更新时间:2023-10-29 13:34:09 24 4
gpt4 key购买 nike

我是一名新的 PhoneGap 程序员。 navigator.notification.alert() 无法在使用 phonegap 的 Android 上运行。但它适用于 iPhone 和 WP7。我正在 Windows Phone 7 中开发此应用程序。

谢谢你的帮助

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Cordova WP7</title>
<link rel="stylesheet" href="master.css" type="text/css" media="screen" title="no title"
charset="utf-8" />
<!--<script type="text/javascript" charset="utf-8" src="cordova-2.0.0.js"></script>-->
<script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
<script type="text/javascript">
function doAlert() {
var message = "This is an Alert dialog";
var title = "Attention!";
navigator.notification.alert(message, title);
};

</script>
</head>
<body>
<h1>
Cordova Tests</h1>
<div id="info">
<a href="#" onclick="doAlert()">Click Me</a>
</div>
</body>
</html>


最后,我得到了解决方案。

解决方案:

在我们构建 phonegap 代码之前(在 build.phonegap.com)我们需要删除 cordova-2.0.0.js 文件。如果我们删除此 cordova-2.0.0.js,phonegap 代码将在 andriod 上运行。

最佳答案

您必须等待 DeviceReady:

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no" />
<script type="text/javascript" charset="utf-8" src="windows/cordova-2.0.0.js"></script>
<script type="text/javascript" charset="utf-8">
var deviceReady = false;
function init() {
document.addEventListener("deviceready", function () {
deviceReady = true;
}, false);

window.setTimeout(function () {
if (!deviceReady) {
alert("Error: Phonegap did not initialize. Demo will not run correctly.");
console.log("Error: Phonegap did not initialize. Demo will not run correctly.");
}
}, 1000);
}

function doAlert() {
var message = "This is an Alert dialog";
var title = "Attention!";
navigator.notification.alert(message, title);
}
</script>
</head>
<body onLoad="init();">
<h1>Cordova Tests</h1>
<div id="info">
<button onclick="doAlert();">Click Me</button>
</div>
</body>
</html>

关于javascript - cordova-2.0.0.js 不能在 android 上使用 phonegap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12388966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com