JavaScript 中 onfocusin 事件的用法是什么?


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

示例

<!DOCTYPE html>
<html>
   <body>
      <p>Write below:</p>
      <input type="text" onfocusin="newFunc(this)">
      <script>
         function newFunc(x) {
            x.style.background = "blue";
         }
      </script>
   </body>
</html>

更新于: 2020-06-23

131 次浏览

开启你的职业生涯

完成课程获取认证

开始学习
广告