回车登录页面的问题

$('#txtUserName,#txtpwd').val('');

$('#txtUserName').focus();


$("#txtUserName").bind('keypress', function (event) {
if (event.keyCode == "13") {
if( $("#txtUserName").val())
{
$('#txtpwd').focus();
}

}
});

$("#txtpwd").bind('keypress', function (event) {
if (event.keyCode == "13") {
if($("#txtpwd").val())
{
$('#submitLogin').click();
}

}
});

posted on 2019-02-19 14:47  漫思  阅读(150)  评论(0编辑  收藏  举报

导航