이 글은 주로 브라우저 백 이벤트를 모니터링하는 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에서 브라우저 닫는 동작을 모니터링하는 방법 Wait online_html/css_WEB-ITnose
Youdao JavaScript 모니터링 브라우저 문제_javascript 기술
위 내용은 브라우저 백 이벤트 수신에 대한 Node.js 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!