javascript制作的簡(jiǎn)單注冊(cè)模塊表單驗(yàn)證通常在我們的HTML頁(yè)面表單中有大量的數(shù)據(jù)驗(yàn)證工作, 免不了要寫(xiě)很多驗(yàn)證表單的js代碼,這是一項(xiàng)非常繁瑣枯燥的工作。很多程序員也會(huì)經(jīng)常遺漏這項(xiàng)工作。所以寫(xiě)了這一 段JavaScript代碼提供給大家使用。使用起來(lái)很簡(jiǎn)單,大家拿回去自由擴(kuò)展吧 一個(gè)注冊(cè)框 進(jìn)行表單驗(yàn)證處理 如圖 有簡(jiǎn)單的驗(yàn)證提示功能 代碼思路也比較簡(jiǎn)單 輸入框失去焦點(diǎn)時(shí)便檢測(cè),并進(jìn)行處理 表單具有 onsubmit = "return check()"行為,處理驗(yàn)證情況 點(diǎn)擊提交表單按鈕時(shí),進(jìn)行最終的驗(yàn)證,達(dá)到是否通過(guò)表單提交的請(qǐng)求。 先是最基本的html+css部分 <style type="text/css"> body{margin:0;padding: 0;} .login{position:relative;margin:100px auto;padding:50px 20px;width: 350px;height: 200px;border:1px solid #333;} .login legend{font-weight: bold;color: green;text-align: center;} .login label{display:inline-block;width:130px;text-align: right;} .btn{height: 30px;width:100px;padding: 5px;border:0;background-color: #00dddd;font-weight: bold;cursor: pointer;float: right;} input{height: 20px;width: 170px;} .borderRed{border: 2px solid red;} img{display: none;} </style> </head> <body> <div class="login"> <form name="form" method="post" action="register.php" onsubmit="return check()"> <legend>【Register】</legend> <p><label for="name">UserName: </label> <input type="text" id="name" > <img src="./img/gou.png" width="20px" height="20px"></p> <p><label for="password">Password: </label> <input type="password" id="password" > <img src="./img/gantan.png" width="20px" height="20px"></p> <p><label for="R_password">Password Again: </label> <input type="password" id="R_password" > <img src="./img/gou.png" width="20px" height="20px"></p> <p><label for="email">Email: </label> <input type="text" id="email" > <img src="./img/gou.png" width="20px" height="20px"></p> <p><input type="submit" value="Register" class="btn"></p> </form> </div> 然后是js的class相關(guān)處理函數(shù) function hasClass(obj,cls){ // 判斷obj是否有此class return obj.className.match(new RegExp('(\\s|^)' + cls + '(\\s|$)')); } function addClass(obj,cls){ //給 obj添加class if(!this.hasClass(obj,cls)){ obj.className += " "+cls; } } function removeClass(obj,cls){ //移除obj對(duì)應(yīng)的class if(hasClass(obj,cls)){ var reg = new RegExp('(\\s|^)' + cls + '(\\s|$)'); obj.className = obj.className.replace(reg," "); } } 然后是驗(yàn)證各個(gè)輸入框的值 function checkName(name){ //驗(yàn)證name if(name != ""){ //不為空則正確,當(dāng)然也可以ajax異步獲取服務(wù)器判斷用戶名不重復(fù)則正確 removeClass(ele.name,"borderRed"); //移除class document.images[0].setAttribute("src","./img/gou.png"); //對(duì)應(yīng)圖標(biāo) document.images[0].style.display = "inline"; //顯示 return true; }else{ //name不符合 addClass(ele.name,"borderRed"); //添加class document.images[0].setAttribute("src","./img/gantan.png"); //對(duì)應(yīng)圖標(biāo) document.images[0].style.display = "inline"; //顯示 return false; } } function checkPassw(passw1,passw2){ //驗(yàn)證密碼 if(passw1 == "" || passw2 == "" || passw1 !== passw2){ //兩次密碼輸入不為空且不等 不符合 addClass(ele.password,"borderRed"); addClass(ele.R_password,"borderRed"); document.images[1].setAttribute("src","./img/gantan.png"); document.images[1].style.display = "inline"; document.images[2].setAttribute("src","./img/gantan.png"); document.images[2].style.display = "inline"; return false; }else{ //密碼輸入正確 removeClass(ele.password,"borderRed"); removeClass(ele.R_password,"borderRed"); document.images[1].setAttribute("src","./img/gou.png"); document.images[1].style.display = "inline"; document.images[2].setAttribute("src","./img/gou.png"); document.images[2].style.display = "inline"; return true; } } function checkEmail(email){ //驗(yàn)證郵箱 var pattern = /^([\.a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/; if(!pattern.test(email)){ //email格式不正確 addClass(ele.email,"borderRed"); document.images[3].setAttribute("src","./img/gantan.png"); document.images[3].style.display = "inline"; ele.email.select(); return false; }else{ //格式正確 removeClass(ele.email,"borderRed"); document.images[3].setAttribute("src","./img/gou.png"); document.images[3].style.display = "inline"; return true; } } 然后為各個(gè)輸入框添加監(jiān)聽(tīng)事件: var ele = { //存放各個(gè)input字段obj name: document.getElementById("name"), password: document.getElementById("password"), R_password: document.getElementById("R_password"), email: document.getElementById("email") }; ele.name.onblur = function(){ //name失去焦點(diǎn)則檢測(cè) checkName(ele.name.value); } ele.password.onblur = function(){ //password失去焦點(diǎn)則檢測(cè) checkPassw(ele.password.value,ele.R_password.value); } ele.R_password.onblur = function(){ //R_password失去焦點(diǎn)則檢測(cè) checkPassw(ele.password.value,ele.R_password.value); } ele.email.onblur = function(){ //email失去焦點(diǎn)則檢測(cè) checkEmail(ele.email.value); } 最后就是點(diǎn)擊提交注冊(cè)時(shí)調(diào)用的check()函數(shù)了 function check(){ //表單提交則驗(yàn)證開(kāi)始 var ok = false; var nameOk = false; var emailOk = false; var passwOk = false; if(checkName(ele.name.value)){ nameOk = true; } //驗(yàn)證name if(checkPassw(ele.password.value,ele.R_password.value)){ passwOk = true; } //驗(yàn)證password if(checkEmail(ele.email.value)){ emailOk = true; } //驗(yàn)證email if(nameOk && passwOk && emailOk){ alert("Tip: Register Success .."); //注冊(cè)成功 //return true; } return false; //有誤,注冊(cè)失敗 } 完整代碼: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www./TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www./1999/xhtml"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Register</title> <meta name="description" content=""> <meta name="keywords" content=""> <link href="" rel="stylesheet"> <style type="text/css"> body{margin:0;padding: 0;} .login{position:relative;margin:100px auto;padding:50px 20px;width: 350px;height: 200px;border:1px solid #333;} .login legend{font-weight: bold;color: green;text-align: center;} .login label{display:inline-block;width:130px;text-align: right;} .btn{height: 30px;width:100px;padding: 5px;border:0;background-color: #00dddd;font-weight: bold;cursor: pointer;float: right;} input{height: 20px;width: 170px;} .borderRed{border: 2px solid red;} img{display: none;} </style> </head> <body> <div class="login"> <form name="form" method="post" action="register.php" onsubmit="return check()"> <legend>【Register】</legend> <p><label for="name">UserName: </label> <input type="text" id="name" > <img src="./img/gou.png" width="20px" height="20px"></p> <p><label for="password">Password: </label> <input type="password" id="password" > <img src="./img/gantan.png" width="20px" height="20px"></p> <p><label for="R_password">Password Again: </label> <input type="password" id="R_password" > <img src="./img/gou.png" width="20px" height="20px"></p> <p><label for="email">Email: </label> <input type="text" id="email" > <img src="./img/gou.png" width="20px" height="20px"></p> <p><input type="submit" value="Register" class="btn"></p> </form> </div> <script type="text/javascript"> function hasClass(obj,cls){ // 判斷obj是否有此class return obj.className.match(new RegExp('(\\s|^)' + cls + '(\\s|$)')); } function addClass(obj,cls){ //給 obj添加class if(!this.hasClass(obj,cls)){ obj.className += " "+cls; } } function removeClass(obj,cls){ //移除obj對(duì)應(yīng)的class if(hasClass(obj,cls)){ var reg = new RegExp('(\\s|^)' + cls + '(\\s|$)'); obj.className = obj.className.replace(reg," "); } } function checkName(name){ //驗(yàn)證name if(name != ""){ //不為空則正確,當(dāng)然也可以ajax異步獲取服務(wù)器判斷用戶名不重復(fù)則正確 removeClass(ele.name,"borderRed"); //移除class document.images[0].setAttribute("src","./img/gou.png"); //對(duì)應(yīng)圖標(biāo) document.images[0].style.display = "inline"; //顯示 return true; }else{ //name不符合 addClass(ele.name,"borderRed"); //添加class document.images[0].setAttribute("src","./img/gantan.png"); //對(duì)應(yīng)圖標(biāo) document.images[0].style.display = "inline"; //顯示 return false; } } function checkPassw(passw1,passw2){ //驗(yàn)證密碼 if(passw1 == "" || passw2 == "" || passw1 !== passw2){ //兩次密碼輸入不為空且不等 不符合 addClass(ele.password,"borderRed"); addClass(ele.R_password,"borderRed"); document.images[1].setAttribute("src","./img/gantan.png"); document.images[1].style.display = "inline"; document.images[2].setAttribute("src","./img/gantan.png"); document.images[2].style.display = "inline"; return false; }else{ //密碼輸入正確 removeClass(ele.password,"borderRed"); removeClass(ele.R_password,"borderRed"); document.images[1].setAttribute("src","./img/gou.png"); document.images[1].style.display = "inline"; document.images[2].setAttribute("src","./img/gou.png"); document.images[2].style.display = "inline"; return true; } } function checkEmail(email){ //驗(yàn)證郵箱 var pattern = /^([\.a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/; if(!pattern.test(email)){ //email格式不正確 addClass(ele.email,"borderRed"); document.images[3].setAttribute("src","./img/gantan.png"); document.images[3].style.display = "inline"; ele.email.select(); return false; }else{ //格式正確 removeClass(ele.email,"borderRed"); document.images[3].setAttribute("src","./img/gou.png"); document.images[3].style.display = "inline"; return true; } } var ele = { //存放各個(gè)input字段obj name: document.getElementById("name"), password: document.getElementById("password"), R_password: document.getElementById("R_password"), email: document.getElementById("email") }; ele.name.onblur = function(){ //name失去焦點(diǎn)則檢測(cè) checkName(ele.name.value); } ele.password.onblur = function(){ //password失去焦點(diǎn)則檢測(cè) checkPassw(ele.password.value,ele.R_password.value); } ele.R_password.onblur = function(){ //R_password失去焦點(diǎn)則檢測(cè) checkPassw(ele.password.value,ele.R_password.value); } ele.email.onblur = function(){ //email失去焦點(diǎn)則檢測(cè) checkEmail(ele.email.value); } function check(){ //表單提交則驗(yàn)證開(kāi)始 var ok = false; var nameOk = false; var emailOk = false; var passwOk = false; if(checkName(ele.name.value)){ nameOk = true; } //驗(yàn)證name if(checkPassw(ele.password.value,ele.R_password.value)){ passwOk = true; } //驗(yàn)證password if(checkEmail(ele.email.value)){ emailOk = true; } //驗(yàn)證email if(nameOk && passwOk && emailOk){ alert("Tip: Register Success .."); //注冊(cè)成功 //return true; } return false; //有誤,注冊(cè)失敗 } </script> </body> </html> 以上所述就是本文的全部?jī)?nèi)容了,希望能夠?qū)Υ蠹覍W(xué)習(xí)javascript表單驗(yàn)證有所幫助。 |
|
|
來(lái)自: quasiceo > 《待分類(lèi)1》