jQuery实现按enter键登录

<script>

$(document).keydown(function (event) {

if (event.keyCode == 13) {

$("#btn_Login").click();

}

});

</script>