如何使用Jquerymobile,PhoneGap在Android中禁用手机的后退按钮

时间:2012-09-23 23:44:35

标签: android jquery cordova jquery-mobile

有人可以告诉我如何禁用Android的后退按钮(这是所有Android手机上的后退按钮)。

我正在使用Jquery手机和PhoneGap。我在Cordova文档中找到了这个,但这对我不起作用。后退按钮事件甚至没有注册。

function onLoad() {
    console.log("**** INSIDE ONLOAD FUNCTION *****");
    document.addEventListener("backbutton", onBackKeyDown, false);   
}

// Handle the back button
function onBackKeyDown() {

    // Pressing the back button does not print this message.
    console.log("**************** INSIDE BACK BUTTON *************");
}

2 个答案:

答案 0 :(得分:13)

我使用了backKeyDown,它对我有用:

function onDeviceReady() {
        document.addEventListener("backbutton", backKeyDown, true);
        console.log("PhoneGap is ready");
    }

    function backKeyDown(d) {
        navigator.app.exitApp(); // To exit the app!
        e.preventDefault(); // to disable the back
    }

确保PhoneGap is ready

更新:您可以将处理程序留空禁用

答案 1 :(得分:0)

sometimes you can get blocking Back button, sometimes not.

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
    document.addEventListener("backbutton", function (e) {
        e.preventDefault();
    }, false );
}