Rumah > Artikel > hujung hadapan web > js关于监听浏览器后退事件详解
本文主要和大家分享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技巧
Atas ialah kandungan terperinci js关于监听浏览器后退事件详解. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!