Disable browser “Back” button

前端 未结 3 1507
别跟我提以往
别跟我提以往 2020-12-22 12:52

how can I disable the browser\'s \"Back\" button in a HTML page? I do not want to create JavaScript window to avoid showing any toolbar,etc. In regular HTML page, is there

3条回答
  •  心在旅途
    2020-12-22 13:35

    Write this code between script tags

        history.pushState(null, null, location.href);
        window.onpopstate = function () {
            history.go(1);
        };
    

提交回复
热议问题