Sự kiện onkeypress sẽ kích hoạt khi nhấn và nhả một phím. Bạn có thể thử chạy mã sau để tìm hiểu cách làm việc với onkeypress sự kiện trong JavaScript -
Ví dụ
<html> <head> <script> <!-- function sayHello() { alert("A key is pressed.") } //--> </script> </head> <body> <input type = "text" onkeypress = "sayHello()"> </body> </html>