当 HTML 中的元素失去焦点时执行脚本?


使用 onblur 属性在元素失去焦点时执行脚本。

示例

<!DOCTYPE html>
<html>
   <body>
      <p>Type text below!</p>

      Country: <input type = "text" name = "myid" id = "myid" onblur = "display()">

      <script>
         function display() {
            var str = document.getElementById("myid");
            str.value = str.value.toUpperCase();
         }
      </script>

   </body>
</html>

更新于: 03-3-2020

242 次浏览

开启你的 职业道路

完成课程即可获得认证

开始学习
广告