2012年6月28日 星期四

JavaScript攔鍵盤訊息

步驟一、body中加入onkeydow要call的function name


<body onkeydown="enterkey()">
步驟二、function中做你想做的事


function enterkey() 
{ 
 e = event.keyCode; 
 if (e==13||e==32) //加入想要攔的id
 { 
  //do something
  //...
  event.returnValue= false; //不做接下來的事 
 } 
} 

沒有留言:

張貼留言