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

사용자가 HTML 페이지로 이동할 때 스크립트를 실행하시겠습니까?


onpageshow 사용 사용자가 페이지로 이동할 때 스크립트를 실행하는 속성입니다.

예시

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

<!DOCTYPE html>
<html>
   <body onpageshow = "display()">
      <h2>Tutorialspoint</h2>
      <p>Simply Easy Learning</p>
      <script>
         function display() {
            alert(You're back!");
         }
      </script>
   </body>
</html>