Last active
December 20, 2015 17:49
-
-
Save callblueday/6171718 to your computer and use it in GitHub Desktop.
表单回车事件防止重复提交
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.onkeydown=function() {//捕捉回车 | |
if (event.keyCode==13) { | |
checkFormValidate(); | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment