사용자 가 window.onbeforeunload 를 언제 클릭 하 는 지 에 대한 취소 이벤트
1669 단어 onbeforeunload취소 이벤트
var _isset=0;
function demo() {
window.onbeforeunload = function () {
if (_isset==0) {
_isset=1; // This will only be seen elsewhere if the user cancels.
return "This is a demonstration, you won't leave the page whichever option you select.";
}
}
_isset=0;
window.location.reload();
return false;
}
This code defines a global variabled named _isset, and then initializes it to zero. In our "onbeforeunload" event the variable is checked and if it's set to one, no unload dialog box will appear. The only way _isset could ever be one is if the user previously aborted a page unload. But as you can see this method won't help you if you need to be immediately notified that that the user has finished dealing with the confirmation box. You can detect when it appears on the screen but there's no way to know when the user has finished interacting with it if the user clicked cancel(if the user clicked OK,then of course the unload event will have been tripped).
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
window. onbeforeunload () 이벤트 호출 ajax바로 특정한 웹 페이지 를 떠 날 때 사용자 가 반드시 로그아웃 을 하지 않 으 면 세 션 을 제때에 소각 하지 못 할 수 있 습 니 다.사용자 가 페이지 를 떠 날 때 자동 로그아웃 기능 을 실현 하기 위해 서 는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.