使用 onfocus 屬性在 HTML 中獲得焦點時執行腳本。
您可以嘗試執行以下程式碼來實作 onfocus 屬性 -
<!DOCTYPE html> <html> <body> <p>Enter subject name below,</p> Subject: <input type = "text" id = "sname" onfocus = "display(this.id)"> <br> <script> function display(val) { document.getElementById(val).style.background = "blue"; } </script> </body> </html>
以上是當HTML元素獲得焦點時執行腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!