このメソッドを使用してnavigator.notification.alert
、ダイアログが閉じられたときにコールバックでデバイス固有のアラートを表示する必要があります。次にhistory.back()
、ユーザーを前のページに送るために使用します。
http://docs.phonegap.com/en/1.8.1/cordova_notification_notification.md.html#notification.alert
例:
function showerror() {
navigator.notification.alert(
'Sorry, Check your Internet Connection. Going Back to the Home page. showerror()',
function() {
history.back();
}
);
}
編集:
戻る特定のページがわかっている場合は、いつでも を使用$.mobile.changePage
してそのページに移動できます。唯一の問題は、戻るボタンのあるデバイス (Android、WP7) で実行する場合です。
例:
function showerror() {
navigator.notification.alert(
'Sorry, Check your Internet Connection. Going Back to the Home page. showerror()',
function() {
$.mobile.changePage('#homePage');
}
);
}