1. 程式人生 > >禁用谷歌瀏覽器後退鍵功能

禁用谷歌瀏覽器後退鍵功能

    $(function(){
        if (window.history && window.history.pushState) {
            $(window).on('popstate', function () {
                window.history.pushState('forward', null, '');
                window.history.forward(1);
            });
        }
        window.history.pushState('forward', null, '');
        window.history.forward(1);
    })

親測可用,瀏覽器版本 Google Chrome 62.0.32032.75