เหตุการณ์ onfocus จะถูกทริกเกอร์เมื่อองค์ประกอบได้รับการโฟกัส คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีใช้งาน onfocus เหตุการณ์ใน JavaScript
ตัวอย่าง
<!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>