onkeydown - 当用户按下/按住某个键时

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function myFunction() {
  6. alert("您在输入字段中按了一个键");
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <p>当用户在输入字段中按键时,将触发函数。</p>
  13.  
  14. <input type="text" onkeydown="myFunction()">
  15.  
  16. </body>
  17. </html>