日期:2014-05-16 浏览次数:20355 次
js如何捕捉键盘操作:
?
第一步:将body注册一下事件:
document.body.onkeydown = function(){catchkey()} ; ?注意到:分号在外面。
?
?
?
第二步: 编写一个catchkey()即可。
?
?
?
注意,如果想去掉默认事件,比如submit默认是提交,可以用一个语句,让其被回车时,不能发送。(或者像滚动条默认事件等等)
则在catchkey()中调用如下函数:
?
?
?
//the function to stop the default process for the keys
function stopDefault()
{
if(event && event.preventDefault){
event.preventDefault() ;
}
else{
window.event.returnValue = false ;
}
if(event.stopPropagation){
event.stopPropagation() ;
}
else{
event.cancelBubble = true ;
}
}
?
?