监控键盘键码的代码 分享 http://www.fpschina.com/index.php?/blogs/entry/787-%E7%9B%91%E6%8E%A7%E9%94%AE%E7%9B%98%E9%94%AE%E7%A0%81%E7%9A%84%E4%BB%A3%E7%A0%81/ More sharing options... 关注者 <HTML> <HEAD> </HEAD> <BODY> <SPAN id=keycode></SPAN> <script language="JScript"> function keydown(){ if(event.keyCode){ document.all("keycode").innerText=event.keyCode; } } document.onkeydown = keydown; </SCRIPT> </BODY> </HTML>
Recommended Comments
Join the conversation
You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.