$(document).keydown(function(event){
if(event.keyCode==13){
document.getElementById("button_login").click();
}
});
$("#button_login").click(function () {
fun();
});
function fun(){
alert("OK");
}
键盘各键对应的编码值(key code)
http://blog.youkuaiyun.com/zhaozhbcn/article/details/38852583