原生JavaScript實現(xiàn)注冊/登陸邏輯

最近在著手一個類似于花瓣網(wǎng)圖片門戶網(wǎng)站(社交類)息尺。第一次做項目改含,然后沒有一起搭伙的挪蹭,orzzzzzzz.這兩天實現(xiàn)了一下登陸與注冊頁面(很簡陋的).
?HTML/CSS就不放出來了并巍,就上一些JS源碼(很丑),不過思路還是清楚的吧妇萄?一下代碼都是初稿锭魔,等網(wǎng)站大致框架搭建好后例证,再回來優(yōu)化代碼,完善事務邏輯迷捧。

首先织咧,獲取可視窗口的大小,然后根據(jù)窗口大小漠秋,將登陸框/注冊框放到可視窗口中間笙蒙。主要針對手機平板PC三者

function respond() {
        var winWidth;
        var winHeight;
        if(window.innerWidth){
            winWidth = window.innerWidth;
        }else if((document.body) && (document.body.clientWidth))
            winWidth = document.body.clientWidth;
        if(window.innerHeight){
            winHeight = window.winHeight;
        } else if((document.body) && (document.body.clientHeight))
            winHeight = document.body.clientHeight;
        var para = document.getElementById('Login');
        var para2 = document.getElementById('Register');
        if(winWidth < 480){
            para.style.marginLeft = winWidth*0.20 + 'px';
            para.style.marginRight = winWidth*0.20 + 'px';
            para2.style.marginLeft = winWidth*0.20 + 'px';
            para2.style.marginRight = winWidth*0.20 + 'px';
        } else if(winWidth < 600){
            para.style.marginLeft = winWidth*0.28 + 'px';
            para.style.marginRight = winWidth*0.28 + 'px';
            para2.style.marginLeft = winWidth*0.28 + 'px';
            para2.style.marginRight = winWidth*0.28 + 'px';
        } else if(winWidth < 840){
            para.style.marginLeft = winWidth*0.34 + 'px';
            para.style.marginRight = winWidth*0.34 + 'px';
            para2.style.marginLeft = winWidth*0.34 + 'px';
            para2.style.marginRight = winWidth*0.34 + 'px';
        }
        else{
            para.style.marginLeft = winWidth*0.40 + 'px';
            para.style.marginRight = winWidth*0.40 + 'px';
            para2.style.marginLeft = winWidth*0.40 + 'px';
            para2.style.marginRight = winWidth*0.40 + 'px';
        }
    }
    respond();

對于輸入的信息,采用正則表達式來進行匹配庆锦。

 var recNumber = /1[3|4|5|8|7][0-9]\d{8}/;   //匹配手機號碼
 var recPassword = /[a-zA-Z0-9]{8,16}/;  //匹配密碼
 var recName = /[a-zA-Z0-9]{6,16}/;  //匹配昵稱

下面主要是注冊邏輯:

 function nameIsCorrect() {
        var event = document.getElementById('user');
        var username = event.value;
        if(username == ''){
            event.classList.remove('normalInput','hintInput');
            event.classList.add('warningInput');
            return 0;
        }
        else if(!recName.test(username)) {
            event.classList.remove('normalInput','hintInput');
            event.classList.add('warningInput');
            return 1;
        }
        /*else if(nameIsExistence(username)){
            event.classList.remove('normalInput','hintInput');
            event.classList.add('warningInput');
            return 2;
        }*/
        else
            return 3;
    }
    function passwordIsCorrect(password) {
        if(recPassword.test(password))
            return 1;
        else{
            if(password.length < 8)
                return 3;
            else
                return 2;
        }
    }
    //userName
    document.getElementById('user').addEventListener('focus',function () {
        this.classList.remove('warnInput','normalInput');
        this.classList.add('hintInput');
        document.getElementById('messageUser').style.display = 'block';
        document.getElementById('correct').style.display = 'none';
        document.getElementById('userHint').style.display = 'inline-block';
        document.getElementById('userWarn').style.display = 'none';
    });

    document.getElementById('user').addEventListener('blur',function () {
        document.getElementById('userHint').style.display = 'none';
        document.getElementById('userWarn').style.display = 'none';
        document.getElementById('messageUser').style.display = 'none';
        document.getElementById('correct').style.display = 'none';
        var index = nameIsCorrect(this.value);
        if(index == 0){
            document.getElementById('messageUser').style.display = 'block';
            document.getElementById('userWarn').style.display = 'block';
            document.getElementById('warnText').innerHTML = '用戶名不能為空';
        }else if(index == 1){
            document.getElementById('messageUser').style.display = 'block';
            document.getElementById('userWarn').style.display = 'block';
            document.getElementById('warnText').innerHTML = '用戶名格式錯誤';
        }else if(index == 2){
            document.getElementById('messageUser').style.display = 'block';
            document.getElementById('userWarn').style.display = 'block';
            document.getElementById('warnText').innerHTML = '用戶名已經(jīng)被占用';
        }else if(index == 3){
            document.getElementById('correct').style.display = 'inline-block';
            this.classList.remove('hintInput','warnInput');
            this.classList.add('normalInput');
        }
    });

    //password
    //passwordWarn1:密碼至少為8位
    //passwordWarn2:密碼格式錯誤
    //passwordWarn3:密碼不能為空
    document.getElementById('password').addEventListener('focus',function () {
        this.classList.remove('warnInput','normalInput');
        this.classList.add('hintInput');
        document.getElementById('messagePassword').style.display = 'block';
        document.getElementById('passwordWarn1').style.display = 'none';
        document.getElementById('passwordWarn2').style.display = 'none';
        document.getElementById('passwordWarn3').style.display = 'none';
        document.getElementById('passwordHint').style.display = 'block';
        document.getElementById('passwordCorrect').style.display = 'none';
    });


    document.getElementById('password').addEventListener('blur',function () {
        document.getElementById('passwordHint').style.display = 'none';
        this.classList.remove('hintInput');
        if(this.value === ''){
            this.classList.add('warningInput');
            document.getElementById('passwordCorrect').style.display = 'none';
            document.getElementById('passwordWarn1').style.display = 'none';
            document.getElementById('passwordWarn2').style.display = 'none';
            document.getElementById('passwordWarn3').style.display = 'block';
        } else{
            var index = passwordIsCorrect(this.value);
            if(index === 1){
                document.getElementById('passwordCorrect').style.display = 'inline-block';
                document.getElementById('passwordWarn1').style.display = 'none';
                document.getElementById('passwordWarn2').style.display = 'none';
                document.getElementById('passwordWarn3').style.display = 'none';
                document.getElementById('messagePassword').style.display = 'none';
                this.classList.add('normalInput');
            } else if(index === 2){
                document.getElementById('messagePassword').style.display = 'block';
                document.getElementById('passwordCorrect').style.display = 'none';
                document.getElementById('passwordWarn1').style.display = 'none';
                document.getElementById('passwordWarn2').style.display = 'block';
                document.getElementById('passwordWarn3').style.display = 'none';
                this.classList.add('warningInput');
            }else if(index === 3){
                document.getElementById('messagePassword').style.display = 'block';
                document.getElementById('passwordCorrect').style.display = 'none';
                document.getElementById('passwordWarn1').style.display = 'block';
                document.getElementById('passwordWarn2').style.display = 'block';
                document.getElementById('passwordWarn3').style.display = 'none';
                this.classList.add('warningInput');
            }
        }
    });
    //number
    function numberIsExistence(number) {
        if(number == '15723222479')
            return true;
        else
            return false;
    }
    document.getElementById('number').addEventListener('focus',function () {
        this.classList.remove('normalInput','warnInput');
        this.classList.add('hintInput');
        document.getElementById('messageNumber').style.display = 'none';
        document.getElementById('securityCode').style.display = 'block';
    });
    document.getElementById('number').addEventListener('blur',function () {
        this.classList.remove('hintInput');
        if(this.value === ''){
            this.classList.add('warningInput');
            this.classList.remove('normalInput');
            document.getElementById('numberCorrect').style.display = 'none';
            document.getElementById('securityCode').style.display = 'none';
            document.getElementById('messageNumber').style.display = 'block';
            document.getElementById('numberWarn1').style.display = 'none';
            document.getElementById('numberWarn2').style.display = 'none';
            document.getElementById('numberWarn3').style.display = 'block';
        } else{
            if(recNumber.test(this.value)) {
                if(numberIsExistence(this.value)) {
                    this.classList.add('warningInput');
                    this.classList.remove('normalInput');
                    document.getElementById('numberCorrect').style.display = 'none';
                    document.getElementById('securityCode').style.display = 'none';
                    document.getElementById('messageNumber').style.display = 'block';
                    document.getElementById('numberWarn1').style.display = 'block';
                    document.getElementById('numberWarn2').style.display = 'none';
                    document.getElementById('numberWarn3').style.display = 'none';
                }
                else {
                    this.classList.add('normalInput');
                    this.classList.remove('warningInput');
                    document.getElementById('messageNumber').style.display = 'none';
                    document.getElementById('numberCorrect').style.display = 'inline-block';
                    document.getElementById('securityCode').style.display = 'block';
                    document.getElementById('Register').removeAttribute('disabled');
                }
            }
            else {
                this.classList.add('warningInput');
                this.classList.remove('normalInput');
                document.getElementById('numberCorrect').style.display = 'none';
                document.getElementById('securityCode').style.display = 'none';
                document.getElementById('messageNumber').style.display = 'block';
                document.getElementById('numberWarn3').style.display = 'none';
                document.getElementById('numberWarn2').style.display = 'block';
                document.getElementById('numberWarn1').style.display = 'none';
            }
        }
    });

函數(shù)都是全局函數(shù)捅位,這是很不規(guī)范的行為,后面我會把它們封裝成對象的方法,避免全局變量混亂艇搀。
通過鼠標事件尿扯,輸入框獲取焦點時會提示對應輸入框的輸入要求,失去焦點后會立即判斷這個輸入框輸入的內(nèi)容是否正確焰雕。處理了注冊邏輯衷笋,登陸邏輯就比較簡單了。
效果如圖:

7255C1F9-62AB-4970-982D-5F5091BF1D5C.png
D82C92F2-5CF8-4D14-BF55-A47D975B9B9C.png
最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末矩屁,一起剝皮案震驚了整個濱河市辟宗,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌吝秕,老刑警劉巖慢蜓,帶你破解...
    沈念sama閱讀 222,104評論 6 515
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異郭膛,居然都是意外死亡晨抡,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,816評論 3 399
  • 文/潘曉璐 我一進店門则剃,熙熙樓的掌柜王于貴愁眉苦臉地迎上來耘柱,“玉大人,你說我怎么就攤上這事棍现〉骷澹” “怎么了?”我有些...
    開封第一講書人閱讀 168,697評論 0 360
  • 文/不壞的土叔 我叫張陵己肮,是天一觀的道長士袄。 經(jīng)常有香客問我,道長谎僻,這世上最難降的妖魔是什么娄柳? 我笑而不...
    開封第一講書人閱讀 59,836評論 1 298
  • 正文 為了忘掉前任,我火速辦了婚禮艘绍,結果婚禮上赤拒,老公的妹妹穿的比我還像新娘。我一直安慰自己诱鞠,他們只是感情好挎挖,可當我...
    茶點故事閱讀 68,851評論 6 397
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著航夺,像睡著了一般蕉朵。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上阳掐,一...
    開封第一講書人閱讀 52,441評論 1 310
  • 那天始衅,我揣著相機與錄音堪伍,去河邊找鬼。 笑死觅闽,一個胖子當著我的面吹牛帝雇,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播蛉拙,決...
    沈念sama閱讀 40,992評論 3 421
  • 文/蒼蘭香墨 我猛地睜開眼尸闸,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了孕锄?” 一聲冷哼從身側響起吮廉,我...
    開封第一講書人閱讀 39,899評論 0 276
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎畸肆,沒想到半個月后宦芦,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 46,457評論 1 318
  • 正文 獨居荒郊野嶺守林人離奇死亡轴脐,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 38,529評論 3 341
  • 正文 我和宋清朗相戀三年调卑,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片大咱。...
    茶點故事閱讀 40,664評論 1 352
  • 序言:一個原本活蹦亂跳的男人離奇死亡恬涧,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出碴巾,到底是詐尸還是另有隱情溯捆,我是刑警寧澤,帶...
    沈念sama閱讀 36,346評論 5 350
  • 正文 年R本政府宣布厦瓢,位于F島的核電站提揍,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏煮仇。R本人自食惡果不足惜劳跃,卻給世界環(huán)境...
    茶點故事閱讀 42,025評論 3 334
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望欺抗。 院中可真熱鬧售碳,春花似錦、人聲如沸绞呈。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,511評論 0 24
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽佃声。三九已至,卻和暖如春倘要,著一層夾襖步出監(jiān)牢的瞬間圾亏,已是汗流浹背十拣。 一陣腳步聲響...
    開封第一講書人閱讀 33,611評論 1 272
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留志鹃,地道東北人夭问。 一個月前我還...
    沈念sama閱讀 49,081評論 3 377
  • 正文 我出身青樓,卻偏偏與公主長得像曹铃,于是被迫代替她去往敵國和親缰趋。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 45,675評論 2 359

推薦閱讀更多精彩內(nèi)容