本文主要和大家分享js关于监听浏览器后退事件详解,希望本文的代码能帮助到大家。
直接上代码(可直接使用)
<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里如何监听浏览器关闭的动作 在线等_html/css_WEB-ITnose
有道JavaScript监听浏览器的问题_javascript技巧
以上是js关于监听浏览器后退事件详解的详细内容。更多信息请关注PHP中文网其他相关文章!