W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <p>当用户在输入字段中按键时,会触发函数。</p> <input type="text" onkeydown="myFunction()"> <script> function myFunction() { alert("You pressed a key inside the input field"); } </script> </body> </html>