获取键盘的键位序号,其实特别的简单,只需要通过event.which就可以实现。接下来看一下下面代码就明白了。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>which</title>
<script type="text/javascript" src="../js/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(‘input‘).keydown(function(event){
$(‘span‘).text(event.which);
});
});
</script>
</head>
<body>
请键入按键:<input type="text"value="" />
<p>通过which可以获取你键入值的键位序号</p>
当前键位序号为:<span></span>
</body>
</html>
原文地址:http://blog.csdn.net/navysir8/article/details/45224973