首頁 >web前端 >html教學 >當HTML元素獲得焦點時執行腳本?

當HTML元素獲得焦點時執行腳本?

WBOY
WBOY轉載
2023-08-29 18:21:021323瀏覽

當HTML元素獲得焦點時執行腳本?

使用 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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除