欢迎光临
我们一直在努力

onkeydown在火狐和IE的用法

在火狐中不支持<body onkeydown=”test()”>,要写成<body onkeydown=”test(event)”>才可以正常使用。

<!DOCTYPE html>  
<html>  
<head>  
    <title></title>  
</head>  
<body onkeydown="test(event)">  
  
<script type="text/javascript">  
function  test(event){  
    var code = event.keycode;  
    alert(code)  
    }  
</script>  
</body>  
</html>

 

在Firefox中,onkeydown方法中的event需要以参数的方式传入 而且使用的和ie的event.keycode不同使用的是event .which

不过在我更新IE到11的时候依然用的是event.which 不过不需要传入参数

赞(0)
版权归原作者所有,如有侵权请告知。达维营-前端网 » onkeydown在火狐和IE的用法

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址