Skip to content

Instantly share code, notes, and snippets.

@wangwen1220
Last active January 2, 2016 13:29
Show Gist options
  • Select an option

  • Save wangwen1220/8310701 to your computer and use it in GitHub Desktop.

Select an option

Save wangwen1220/8310701 to your computer and use it in GitHub Desktop.
JS: jQuery 禁用表单的回车键提交 | Disabled return submit
// jQuery 禁用表单的回车键提交
$("#form").keypress(function(e) {
if (e.which == 13) {
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment