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

HTML에서 요소가 포커스를 잃을 때 스크립트를 실행하시겠습니까?


onblur 사용 속성은 요소가 HTML에서 포커스를 잃을 때 스크립트를 실행합니다. 다음 코드를 실행하여 onblur를 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE html>
<html>
   <body>
      <p>Type text below!</p>

      Country: <input type = "text" name = "myid" id = "myid" onblur = "display()">

      <script>
         function display() {
            var str = document.getElementById("myid");
            str.value = str.value.toUpperCase();
         }
      </script>

   </body>
</html>