JavaScript 参考手册
onkeydown 事件
在用户按下一个按键时执行JavaScript代码
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function myFunction() { alert("你在输入栏内按下一个键"); } </script> </head> <body> <p>当你在输入框内按下一个按键是函数被触发</p> <input type="text" onkeydown="myFunction()"> </body> </html>
运行结果:
点击运行 »