Computer >> Máy Tính >  >> Lập trình >> Javascript

Việc sử dụng sự kiện onfocusout trong JavaScript là gì?

Sự kiện onfocusin kích hoạt khi một phần tử bị mất tiêu điểm. Bạn có thể thử chạy mã sau để tìm hiểu cách triển khai onfocusout sự kiện trong JavaScript.

Ví dụ

<!DOCTYPE html>
<html>
   <body>
      <p>Write below:</p>
      <p>After losing focus, the background color of input check will change.</p>
      <input type = "text" onfocusout = "newFunc(this)">
      <script>
         function newFunc(x) {
            x.style.background = "blue";
         }
      </script>
   </body>
</html>