是否可在用户按压 HTML 中按键时执行脚本?


使用 onkeydown 属性。当用户按压按键时,将触发 onkeydown 属性。

示例

你可以尝试运行以下代码,以便在按压按键时执行脚本:−

<!DOCTYPE html>
<html>
   <body>
      <p>Press a key inside the textbox.</p>
      <input type = "text" onkeydown = "display()">
      <script>
         function display() {
            alert("You pressed a key!");
         }
      </script>
   </body>
</html>

更新时间:2020 年 3 月 3 日

298 次浏览

开启您的 职业生涯

通过完成课程获取认证

开始
广告