Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

문서가 HTML로 언로드될 때 스크립트를 실행하시겠습니까?


언로드 전 문서를 언로드할 준비가 되면 이벤트 속성이 실행됩니다.

예시

다음 코드를 실행하여 onbeforeunload를 구현할 수 있습니다. 속성 -

<!DOCTYPE html>
<html>
   <body onbeforeunload = "return display()">
      <p>Close this window or press F5.</p>
      <script>
         function display() {
            return "Wanna stay here or leave?";
         }
      </script>
   </body>
</html>