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