この記事では主に、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
Youdao JavaScript監視ブラウザの問題_JavaScriptスキル
以上がjsによるブラウザバックイベントのリッスンに関する詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。