JavaScript에서 브라우저 이벤트를 닫는 방법: 1. onbeforeunload 메서드를 사용합니다. 브라우저를 닫거나 새로 고치면 이 이벤트가 트리거됩니다. 2. popstate 메서드를 사용합니다. 코드는 [history.pushState("123", null, document. UR].
이 튜토리얼의 운영 환경: windows7 시스템, javascript 버전 1.8.5, DELL G3 컴퓨터
javascript 브라우저 이벤트 닫기 방법:
1, onbeforeunload
Close 또는 브라우저를 새로고침하세요. 이 이벤트를 트리거하세요.
샘플 코드
window.onbeforeunload = function(ev) { return true; };
2, popstate
샘플 코드
window.history.pushState("123", null, document.URL); window.addEventListener("popstate", function() { _this.isMsgShow = true; history.pushState("123", null, document.URL); });
관련 무료 학습 권장사항: javascript 비디오 튜토리얼
위 내용은 자바스크립트에서 브라우저 이벤트를 닫는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!