当用户按键盘上的键时运行脚本如何执行?


使用 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-03-03

298 次浏览

开始你的 职业生涯

通过完成课程取得认证

开始
广告