JavaScript 参考手册
onkeypress 事件
在用户按下键盘按钮时执行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" onkeypress="myFunction()"> </body> </html>
运行结果:
点击运行 »