用戶登錄

記住密碼 找回密碼
還沒有賬號?立即注冊

微信掃碼安全登錄

二維碼已過期

點擊刷新

掃碼即表示同意 《用戶協議》《隱私協議》

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(); } })