直接上代码(可直接使用)
<script> $(document).ready(function (e) { var counter = 0; if (window.history && window.history.pushState) { $(window).on('popstate', function () { window.history.pushState('forward', null, '#'); window.history.forward(1); // alert("不可回退"); //如果需在弹框就有它 self.location="orderinfo.html"; //如查需要跳转页面就用它 }); } window.history.pushState('forward', null, '#'); //在IE中必须得有这两行 window.history.forward(1); }); </script>
相关推荐:
js监听浏览器tab页切换的实例
js里如何监听浏览器关闭的动作 在线等_html/css_WEB-ITnose
有道Javascript监听浏览器的问题_javascript技巧
以上就是js关于监听浏览器后退事件详解的详细内容,更多请关注php中文网其它相关文章!