Skip to content

Instantly share code, notes, and snippets.

@zacker330
Created April 25, 2013 00:02
Show Gist options
  • Save zacker330/5456578 to your computer and use it in GitHub Desktop.
Save zacker330/5456578 to your computer and use it in GitHub Desktop.
页面级绑定回车事件
document.onkeydown = function (e) {
// 兼容FF和IE和Opera
var theEvent = e || window.event;
var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
if (code == 13) {
$('#formId').trigger('submit');
return false;
}
return true;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment