65

我是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>

但它不起作用。

4

7 回答 7

70

试试这个代码。

<!DOCTYPE HTML>
<html>
  <head>
    <title>PhoneGap</title>

        <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>      
        <script type="text/javascript" charset="utf-8">

            function onLoad()
            {
                  document.addEventListener("deviceready", onDeviceReady, true);
            }

            function exitFromApp()
             {
                navigator.app.exitApp();
             }

        </script>

    </head>

    <body onload="onLoad();">
       <button name="buttonClick" onclick="exitFromApp()">Click Me!</button>
    </body>
</html>

src="cordova-1.5.0.js"替换为您的 phonegap js 。

于 2012-09-06T10:26:47.307 回答
21

关闭应用程序的方法有多种,具体取决于:

if (navigator.app) {
    navigator.app.exitApp();
} else if (navigator.device) {
    navigator.device.exitApp();
} else {
    window.close();
}
于 2016-04-19T05:14:39.910 回答
11
navigator.app.exitApp();

将此行添加到您希望退出应用程序的位置。

于 2014-10-14T23:42:35.260 回答
3

@Pradip Kharbuja

在 Cordova-2.6.0.js (l. 4032) 中:

exitApp:function() {
  console.log("Device.exitApp() is deprecated. Use App.exitApp().");
  app.exitApp();
}
于 2013-04-24T08:12:13.460 回答
2
if(navigator.app){
        navigator.app.exitApp();
}else if(navigator.device){
        navigator.device.exitApp();
}
于 2016-03-16T22:09:40.540 回答
1

抱歉,我无法在评论中回复。仅供参考,这些代码

if (navigator.app) {
navigator.app.exitApp();
}
else if (navigator.device) {
  navigator.device.exitApp();
}
else {
          window.close();
}

我确认不起作用。我使用 phonegap 6.0.5 和 cordova 6.2.0

于 2016-08-04T09:01:39.110 回答
1

我使用了上述组合,因为我的应用程序可以在浏览器和设备上运行。浏览器的问题是它不会让您从脚本关闭窗口,除非您的应用程序是由脚本打开的(例如 browsersync)。

        if (typeof cordova !== 'undefined') {
            if (navigator.app) {
                navigator.app.exitApp();
            }
            else if (navigator.device) {
                navigator.device.exitApp();
            }
        } else {
            window.close();
            $timeout(function () {
                self.showCloseMessage = true;  //since the browser can't be closed (otherwise this line would never run), ask the user to close the window
            });
        }
于 2016-09-05T16:53:44.780 回答