"HTML DOM beforeunload 이벤트"의 두 판 사이의 차이

17번째 줄: 17번째 줄:


==같이 보기==
==같이 보기==
* [[textarea 저장 안하고 페이지 이동시 경고]]
* [[WindowEventHandlers.onbeforeunload]]
* [[WindowEventHandlers.onbeforeunload]]
* [[DOMContentLoaded]]
* [[DOMContentLoaded]]

2018년 3월 4일 (일) 23:52 판

1 개요

beforeunload 이벤트
<script>
window.addEventListener("beforeunload", function (e) {
  var confirmationMessage = "\o/";
  e.returnValue = confirmationMessage; // Gecko, Trident, Chrome 34+
  return confirmationMessage; // Gecko, WebKit, Chrome <34
});
</script>

2 브라우저 경고창 예시

크롬

Chrome - 이 사이트에서 나가시겠습니까.png

3 같이 보기

4 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}