Sử dụng onkeydown thuộc tính. Thuộc tính onkeydown kích hoạt khi người dùng đang nhấn một phím.
Ví dụ
Bạn có thể thử chạy đoạn mã sau để thực thi tập lệnh khi nhấn phím -
<!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>