简单教程
提交运行
代码编辑器:
<script> function myFunction(){ alert("你在输入栏内按下一个键"); } </script> <p>当你在输入框内按下一个按键是函数被触发</p> <input type="text" onkeydown="myFunction()">
运行结果: