主頁 > 知識(shí)庫 > javascript中使用正則表達(dá)式進(jìn)行字符串驗(yàn)證示例

javascript中使用正則表達(dá)式進(jìn)行字符串驗(yàn)證示例

熱門標(biāo)簽:浙江營(yíng)銷外呼系統(tǒng)有哪些 上海銷售電銷機(jī)器人軟件 遼寧秒客來電話機(jī)器人 惠安地圖標(biāo)注 山東外呼系統(tǒng)聯(lián)系方式 地圖標(biāo)注店鋪地圖標(biāo)注酒店 自己做的電銷機(jī)器人 哈爾濱公司外呼系統(tǒng)代理 淄博市張店區(qū)地圖標(biāo)注
var reg=/正則表達(dá)式/;
boolean reg.test(要驗(yàn)證的字符串);
js引擎會(huì)將/正則表達(dá)式/“”轉(zhuǎn)換成一個(gè)RegExp對(duì)象,當(dāng)字符串滿足正則表達(dá)式的要求事,返回true。
我寫的一個(gè)表達(dá)式驗(yàn)證示例:功能如下:
用戶名,不能為空
密碼6為數(shù)字
密碼確認(rèn),兩次輸入密碼必須相同
身份證號(hào)碼必須是15位,或者是18位,最末尾也可以是X(該功能還沒有寫,有時(shí)間再補(bǔ)上)
復(fù)制代碼 代碼如下:

!DOCTYPE html>
html>
head>
title>testTablel.html/title>
!-- 用戶名,不能為空
密碼6為數(shù)字
密碼確認(rèn),兩次輸入密碼必須相同
身份證號(hào)碼必須是15位,或者是18位,最末尾也可以是X -->
style>
#d1 {
width: 400px;
height: 250px;
background-color: #FFE4B5;
margin: 40px auto;
}
#d1_head {
color: white;
font-size: 20px;
font-family: "Arial";
height: 24px;
background-color: bule;
}
#d1_content {
padding-left: 30px;
padding-top: 30px;
}
.s1 {
color: red;
font-style: italic;
}
.s2 {
border: 2px dotted blue;
}
/style>
meta http-equiv="content-type" content="text/html; charset=UTF-8">
script>
function check_username(){
var txtObj=document.getElementById("username");
txtObj.className='';
var msgObj=docuemnt.getElementById("username_msg");
msgObj.innerHTML='';
if(txtObj.value.length==0){
msgObj.innerHTML='用戶名不能為空';
//給節(jié)點(diǎn)的class屬性賦值
txtObj.className='s2';
return false;
}
return true;
}
function check_pwd(){
var pwdObj=document.getElementById("pwd");
pwdObj.classNames='';
var msgObj=document.getElementById("pwd_msg");
msgObj.innerHTML='';
var reg=/^\d{6}$/;
//javascript中一個(gè)test方法,返回boolean
if(!reg.test(pwdObj.value)){
msgObj.innerHTML='密碼是6位數(shù)';
pwdObj.className='s2';
return false;
}
return true;
}
function check_pwd1(){
var pwdObj=document.getElementById("pwd");
// pwdObj.classNames='';
// var msgObj=document.getElementById("pwd_msg");
// msgObj.innerHTML='';
var pwdObj1=document.getElementById("pwd1");
//pwdObj1.classNames='';
var msgObj1=document.getElementById("pwd_msg1");
msgObj1.innerHTML='';
if(pwdObj.value!=pwdObj1.value){
msgObj1.innerHTML='密碼不一致,請(qǐng)重新輸入';
return false;
}
return true;
}
function check_form(){
var flag=check_username()check_pwd()check_pwd1;
return flag;
}
/script>
/head>
body>
div id="d1">
div id="d1_head">注冊(cè)/div>
div id="d1_content">
form onsubmit="return check_form();">
table>
tr>
td>用戶名/td>
td>input id="username" name="username"
onblur="check_username();" /> span class="s1" id="username_msg">/span>
/td>
/tr>
tr>
td>密碼/td>
td>input type="password" id="pwd" name="pwd"
onblur="check_pwd();" /> span class="s1" id="pwd_msg">/span>/td>
/tr>
tr>
td>確認(rèn)密碼/td>
td>input type="password" id="pwd1" name="pwd1"
onblur="check_pwd1();" /> span class="s1" id="pwd_msg1">/span>
tr>
td colspan="2">
input type="submit" value="確認(rèn)" /> input type="reset"
value="重置" />
/td>
/tr>/table>
/form>
/div>
/div>
/body>
/html>
您可能感興趣的文章:
  • js 正則表達(dá)式學(xué)習(xí)筆記之匹配字符串
  • JS使用replace()方法和正則表達(dá)式進(jìn)行字符串的搜索與替換實(shí)例
  • JS正則表達(dá)式獲取字符串中特定字符的方法
  • js將字符串轉(zhuǎn)成正則表達(dá)式的實(shí)現(xiàn)方法
  • javascript中使用正則表達(dá)式實(shí)現(xiàn)刪除字符串中的前后空格
  • 用正則表達(dá)式判斷字符串是漢字還是拼音的js函數(shù)代碼
  • web.js.字符串與正則表達(dá)式操作

標(biāo)簽:西安 無錫 重慶 銅川 綿陽 宣城 長(zhǎng)沙 泰州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《javascript中使用正則表達(dá)式進(jìn)行字符串驗(yàn)證示例》,本文關(guān)鍵詞  javascript,中,使用,正則,表達(dá)式,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《javascript中使用正則表達(dá)式進(jìn)行字符串驗(yàn)證示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于javascript中使用正則表達(dá)式進(jìn)行字符串驗(yàn)證示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章