JavaScript 中 onfocus 事件的使用情况是什么?


当元素获得焦点时,会触发 onfocus 事件。你可以尝试运行以下代码以了解如何在 JavaScript 中实现onfocus 事件。

示例

<!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>

更新于: 2020 年 5 月 22 日

477 次浏览

开启您的职业生涯

通过完成该课程获取认证

开始
广告