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

JavaScript에서 onscroll 이벤트의 사용법은 무엇입니까?

<시간/>

onscroll 이벤트는 요소에 대해 스크롤바가 스크롤될 때 발생합니다. 다음 코드를 실행하여 onscroll을 구현하는 방법을 배울 수 있습니다. 자바스크립트의 이벤트

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            border: 2px solid blue;
            width: 300px;
            height: 100px;
            overflow: scroll;
         }
      </style>
   </head>
   
   <body>
      <div id="content">
         This is demo text. This is demo text.This is demo text.This is demo text.
         This is demo text.This is demo text.This is demo text.This is demo text.
         This is demo text.This is demo text.This is demo text.
         This is demo text.This is demo text.This is demo text.
         This is demo text.This is demo text.This is demo text.
      </div>
      <p id = "myScroll"> </p>
      <script>
         document.getElementById("content").onscroll = function() {myFunction()};
         function myFunction() {
            document.getElementById("myScroll").innerHTML = "Scroll successfull!.";
         }
      </script>
   </body>
</html>