Skip to content

Instantly share code, notes, and snippets.

@syfun
Created October 20, 2016 05:33
Show Gist options
  • Save syfun/cdfef453e48d30aefcc93d0a2d3f90c0 to your computer and use it in GitHub Desktop.
Save syfun/cdfef453e48d30aefcc93d0a2d3f90c0 to your computer and use it in GitHub Desktop.
angular-js
// Enter键登录
vm.keyPress = function (ev) {
if (ev.keyCode == 13) {
UserService.login(vm.user);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment