我是phonegap的新手。我准备了一个示例应用程序。我的应用程序有 2 个页面,第一个页面有一个按钮,单击时会打开第二个页面。使用以下方法工作正常
function callAnothePage()
{
window.location = "test.html";
}
第二页有一个按钮,单击时我想退出应用程序。我使用了以下
function exitFromApp()
{
navigator.app.exitApp();
}
test.html
代码,
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" charset="utf-8" src="cordova-2.0.0.js"></script>
<script type="text/javascript" charset="utf-8">
function onLoad()
{
console.log("device reday !!!!")
document.addEventListener("deviceready", onDeviceReady, true);
}
function exitFromApp()
{
console.log("in button");
navigator.app.exitApp();
}
</script>
</head>
<body onload="onLoad();">
<h4><center>Login Page</center></h4>
<input type="submit" onclick="exitFromApp()" value="exit"/>
</body>
</html>
但它不起作用。