本文主要和大家分享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中文網其他相關文章!