当元素获得焦点时,在 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>

更新于: 2020 年 6 月 1 日

240 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告