键盘事件为什么我的电脑上,火狐不支持keyCode或charCode属性你们电脑上支持吗?我测试了其它几个浏览器都支持。。[解决办法]是你的代码有问题,。正确的写方法是<script>function testKey(evt){ e = window.event||evt; //IE使用window.event,非IE使用evt alert(e.keyCode)}</script><input onkeydown="testKey(event)">注意红色的部分