回车登录页面的问题
$('#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();
}
}
});
漫思