首页 > 技术文章 > event 事件 keyCode

mingjixiaohui 2016-03-12 15:12 原文

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script>
			window.onload = function(){
				
				document.onkeydown = function(ev){
					var oEvent = ev || event;
				
					alert(oEvent.keyCode);
				}	
			}
		</script>
	</head>
	
	<body>
	</body>
</html>

  

推荐阅读