禁用谷歌浏览器后退键功能

    $(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

猜你喜欢

转载自blog.csdn.net/m0_37524661/article/details/82712757