Created
April 25, 2013 00:02
-
-
Save zacker330/5456578 to your computer and use it in GitHub Desktop.
页面级绑定回车事件
This file contains hidden or 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 (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