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

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

<시간/>

흐림 이벤트는 개체가 초점을 잃을 때 트리거됩니다. 다음 코드를 실행하여 JavaScript에서 onblur 이벤트를 구현하는 방법을 배울 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <body>
      <p>Write below:</p>
      <input type = "text" onblur = "newFunc(this)">
      <script>
         function newFunc(a) {
            a.style.background = "green";
         }
      </script>
   </body>
</html>