风人园

弱水三千,只取一瓢,便能解渴;佛法无边,奉行一法,便能得益。
随笔 - 99, 文章 - 181, 评论 - 56, 引用 - 0
数据加载中……

javascript如何捕捉键盘事件? (ZT)

 

<SCRIPT>
function fnTrapKD(){
   if(oTrap.checked){
      oOutput.innerText+="[trap = " + event.keyCode + "]";
      event.returnValue=false;
   }
   else{
      oOutput.innerText+=String.fromCharCode(event.keyCode);
   }
}
function test()
{
 if (event.keyCode==13)
 {
  alert("press enter");
 }
 
}
</SCRIPT>
<INPUT TYPE="checkbox" ID="oTrap" checked>显示按键的keyCode<br />
在该输入框按键:<INPUT ID="oExample" TYPE="text" onkeydown="fnTrapKD()"><br />
<TEXTAREA ID="oOutput" ROWS="10" COLS="50">
</TEXTAREA>
<br />
<INPUT ID="oExample1" TYPE="text" onkeydown="test()">

<SCRIPT>
document.write( String.fromCharCode( 81,49 ) + "<br>" );
</SCRIPT>

使用event,keyCode来捕获编码,再用String的fromCharCode方法转换成字母(大写)
The fromCharCode(num1,num2,, numN) method is a static String method that creates a string containing one or more characters whose Unicode values are passed as parameters.

posted on 2006-07-11 19:06 风人园 阅读(1043) 评论(0)  编辑  收藏 所属分类: JavaScript