美文网首页
js屏蔽手机物理后退键

js屏蔽手机物理后退键

作者: 银海人 | 来源:发表于2019-01-15 16:02 被阅读0次
    //屏蔽物理后退键
    $(document).ready(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, '#'); //在IE中必须得有这两行
                window.history.forward(1);
    });

相关文章

网友评论

      本文标题:js屏蔽手机物理后退键

      本文链接:https://www.haomeiwen.com/subject/xtuydqtx.html