Close pop up on back button

后端 未结 10 1520
长发绾君心
长发绾君心 2020-12-08 08:15

I want to close pop up on click of back button for mobile. I implemented this using onhashchange:

window.onhashchange = function (event) {

};
10条回答
  •  暖寄归人
    2020-12-08 08:35

    This could be done easily using Apache Cordova but not sure if you are using it to show your page in webview.

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

    http://cordova.apache.org/docs/en/2.4.0/cordova_events_events.md.html#backbutton

提交回复
热议问题