用户在 HTML 中释放某个键时执行一个脚本?


使用 onkeyup 属性。onkeyup 属性在用户释放某个键时触发。

示例

你可以尝试运行以下代码来在释放某个键时执行一个脚本 −

<!DOCTYPE html>
<html>
   <body>
      <p>Press a key inside the textbox.</p>

      <input type = "text" onkeydown = "display()">

      <script>
         function display() {
            alert("You released a key!");
         }
      </script>
   </body>
</html>

更新于:2020-03-03

查看次数:102

开启你的 职业生涯

通过完成课程获得认证

开始
广告