用户登录

记住密码 找回密码
还没有账号?立即注册

微信扫码安全登录

二维码已过期

点击刷新

扫码即表示同意 《用户协议》《隐私协议》

关闭

微信扫码联系客服

电脑端直接沟通

点击联系客服

客服在线时间:周一至周日 9 :00—18 :00

经典表情

     
     
     
    请为我们的服务评分
    非常满意
    评价内容
    提交

    留言后,客服会尽快与您联系~

  • *手机
  •  姓名
  • *关注考试
  • * 留言
  • 提交
  • 关闭
  • Enter
    Ctrl+Enter
    发送
    toast
    点击咨询
    ".iptBox").find('.ipt').attr('type','text') } } //记住密码 function rememberPassword(that){ if(that.find('.checkBox').hasClass('on')){ that.find('.checkBox').removeClass('on') }else{ that.find('.checkBox').addClass('on') } } //输入框输入移除错误样式 $('.loginMod .ipt').on('blur',function(){ if($(this).val()!=''){ if($(this).parent().hasClass('errorBox')){ $(this).parent().removeClass('errorBox'); $(this).next().text(''); if($(this).hasClass('password_ipt')){ $(this).parents('.loginMod').find('.infoBox').removeClass('errTop') } } }else{ $(this).parent().addClass('errorBox'); if($(this).hasClass('password_ipt')){ $(this).next().text('密码不能为空!'); $(this).parents('.loginMod').find('.infoBox').addClass('errTop') }else{ $(this).next().text('用户名或手机号不能为空!'); } } }) $(document).keydown(function (event) { if (event.keyCode === 13) { $(".BtnLogin").click(); } })