萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> js中鍵盤事件實例簡析

js中鍵盤事件實例簡析

 該實例效果:

按鍵盤上的任意一個鍵,彈出相應的ASCII碼,兼容ie,chrome和firefox。

但還是有不少問題:

(1)ie和chrome中,一些鍵沒有效果,如上、下、左、右等;
(2)而firefox中的向右鍵,與單引號鍵,都為39。

具體代碼如下:

代碼如下: <html>
<head>
<script type="text/javascript">
 window.onload = function(){
  var bd = document.getElementsByTagName('body')[0];
  bd.onkeypress = function(ev){
   ev = ev || window.event;//ie不支持function參數ev
   alert(ev.keyCode || ev.which);//火狐不支持keyCode
  }
 }
</script>
<style type="text/css">
#par{width:300px;height:200px;background:gray;}
#son{width:200px;height:100px;background:green;}
</style>
</head>
<body>
<div id="par">
 <div id="son"></div>
</div>
</body>
</html>
copyright © 萬盛學電腦網 all rights reserved