0

我有 index.html 和 page.html

index.html 有一个指向 page.html 的锚点

我会按下后退按钮并询问用户是否真的想返回 index.html

这是我的代码:

索引.html

<!DOCTYPE HTML>
<html>
  <head>
    <title>First App</title>
    <script src="cordova-2.6.0.js"></script>
    <script>
     function onLoad(){
          document.addEventListener("deviceready",onDeviceReady, true);
     }

     function onDeviceReady(){
        navigator.notification.alert("PhoneGap is working!!");
     }
  </script>
  </head>
  <body onload="onLoad();">
       <h1>Welcome to PhoneGap</h1>
       <h2>Edit assets/www/index.html</h2>
        <a href="page.html">Go to page</a>
  </body>
</html>

page.html

<!DOCTYPE HTML>
<html>
  <head>
    <title>First App</title>
  <script src="cordova-2.6.0.js"></script>
  <script>
     function onLoad(){
          document.addEventListener("deviceready",onDeviceReady, true);
        document.addEventListener("backbutton", onBackKeyDown, false);
     }

     function onDeviceReady(){
navigator.notification.alert("PhoneGap is working!!");
     }

function onBackKeyDown(e) {        
        navigator.notification.alert("PhoneGap back is working!!");
}
  </script>
  </head>
  <body onload="onLoad();">
       <h1>Welcome to PhoneGap Page</h1>
       <h2>Edit assets/www/page.html</h2>
  </body>
</html>

问题是没有处理后退按钮按下,但是因为我显示了警报框,所以正确加载了科尔多瓦。

我做错了什么?

我有一台搭载 Android 4.2.2 的三星 Google Nexus

非常感谢。

4

1 回答 1

3

将您的后退按钮侦听器放在 onDeviceReady 函数中。

于 2013-04-22T04:08:22.620 回答