美文网首页
监听浏览器“返回”按钮跳转指定URL

监听浏览器“返回”按钮跳转指定URL

作者: NO我的错 | 来源:发表于2018-11-21 16:14 被阅读0次

onpopstate事件,比如:跳转到百度

<script>
    window.onpopstate = function() {
        window.location.href = 'http://www.baidu.com';
    };
    //加入以下俩行代码,才能触发
    window.history.pushState('forward', null, '#');
    window.history.forward(1);
</script>

相关文章

网友评论

      本文标题:监听浏览器“返回”按钮跳转指定URL

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