Sự kiện bật phím kích hoạt khi khóa được phát hành.
Ví dụ
Bạn có thể thử chạy mã sau để tìm hiểu cách làm việc với onkeyup sự kiện trong JavaScript -
<html> <head> <script> <!-- function sayHello() { var str = document.getElementById("subject"); str.value = str.value.toLowerCase(); } //--> </script> </head> <body> <p>Enter subject below in upper case and see what happpens.</p> <input type = "text" onkeyup = "sayHello()" id = "subject"> </body> </html>