博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

登录页面使用回车切换控件

Posted on 2016-01-25 10:23  Lillian Mao  阅读(178)  评论(0编辑  收藏  举报

登录页面效果图

 
	jQuery(function() {
		$("#userName")[0].focus();

		$("#userName").bind('keydown', function(event) {
			if (event.keyCode == 13) {
				$("#password")[0].focus();
			}
		});

		$("#password").bind('keydown', function(event) {
			if (event.keyCode == 13) {
				$("#verifyCode")[0].focus();
			}
		});

		$("#verifyCode").bind('keydown', function(event) {
			if (event.keyCode == 13) {
				$("#btnLogin")[0].focus();
			}
		});

		$("#btnLogin").bind('keydown', function(event) {
			if (event.keyCode == 13) {
				submitForm();
			}
		});
	});