Cordova backbutton Event Never Firing

前端 未结 3 1545
闹比i
闹比i 2021-01-24 15:08

I am overriding my device back button per the documentation that I attach event listener to backbutton with argument of false after the devicerea

3条回答
  •  故里飘歌
    2021-01-24 15:29

    Try This

        $(document).ready(function () {
    
            document.addEventListener("backbutton", onBackKeyDown, false);
        });
        function onBackKeyDown() {
            alert('ok backey downed');
        }
    

    Make sure these files are link in your page

    
    
    
    

提交回复
热议问题