<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<input placeholder="测试" id="btn" onkeydown="EnterKey()">
</body>
<script>
function a(){
alert("1")
}
function EnterKey(event){
event = event || window.event;
if (event.keyCode == 13) {
a()
}
}
</script>
</html>