Sự kiện onfocus được kích hoạt khi phần tử được lấy nét. Bạn có thể thử chạy mã sau để tìm hiểu cách triển khai onfocus sự kiện trong JavaScript.
Ví dụ
<!DOCTYPE html> <html> <body> <p>Write below:</p> <input type = "text" onfocus = "newFunc(this)"> <script> function newFunc(x) { x.style.background = "blue"; } </script> </body> </html>