用户在 HTML 中释放某个键时执行一个脚本?
使用 onkeyup 属性。onkeyup 属性在用户释放某个键时触发。
示例
你可以尝试运行以下代码来在释放某个键时执行一个脚本 −
<!DOCTYPE html> <html> <body> <p>Press a key inside the textbox.</p> <input type = "text" onkeydown = "display()"> <script> function display() { alert("You released a key!"); } </script> </body> </html>
广告