日期:2014-05-20 浏览次数:20656 次
<script type="text/javascript">
document.onkeydown = function(e) {
// 兼容FF和IE和Opera
var theEvent = e
------解决方案--------------------
window.event;
var code = theEvent.keyCode
------解决方案--------------------
theEvent.which
------解决方案--------------------
theEvent.charCode;//获取键盘code值
alert(code);
return true;
}
</script>