私はindex.htmlとpage.htmlを持っています
index.html には page.html へのアンカーがあります
戻るボタンを押して、本当に index.html に戻りたいかどうかをユーザーに尋ねます。
これは私のコードです:
index.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>
問題は、戻るボタンの押下が処理されないことですが、アラート ボックスが表示されているため、cordova は正しく読み込まれます。
私が間違っていることは何ですか?
Android 4.2.2 を搭載した Samsung Google Nexus を使用しています。
どうもありがとう。