เหตุการณ์โฟกัสจะทำงานเมื่อองค์ประกอบได้รับหรือสูญเสียโฟกัส ต่อไปนี้เป็นเหตุการณ์สำคัญ -
กิจกรรม | คำอธิบาย |
---|---|
เบลอ | เหตุการณ์นี้เริ่มทำงานเมื่อองค์ประกอบสูญเสียโฟกัส |
โฟกัส | เหตุการณ์นี้เริ่มทำงานเมื่อองค์ประกอบได้รับการโฟกัส |
โฟกัส | เหตุการณ์นี้เริ่มทำงานเมื่อองค์ประกอบกำลังจะโฟกัส |
ocusout | เหตุการณ์นี้เริ่มทำงานเมื่อองค์ประกอบกำลังจะสูญเสียโฟกัส |
ต่อไปนี้เป็นรหัสสำหรับเหตุการณ์โฟกัสใน JavaScript -
ตัวอย่าง
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } input { padding: 10px; } </style> </head> <body> <h1>Focus events in Javascript</h1> <form id="form"> <input type="text" placeholder="Username" /> <input class="passW" type="password" placeholder="Password" /> </form> <h3>Focus on the above password input box to change its background color</h3> <script> let passEle = document.querySelector(".passW"); passEle.addEventListener("focus", () => { passEle.style.backgroundColor = "#90EE90"; }); </script> </body> </html>
ผลลัพธ์
มุ่งเน้นไปที่ฟิลด์รหัสผ่าน -