常用表單正則驗證

2021-07-30 16:14:10 字數 1024 閱讀 5130

這裡介紹常用的幾種js正則驗證方法

一、身份證號碼的驗證

/**

* 校驗身份證號碼

* @returns false 身份證號碼有錯 true 身份證號碼正確

*/function checkcardid(obj)$)|(^\d([0-9]|x)$)/.test(cardid)))

return true;

}

二、手機號碼驗證

//2 驗證 手機號

var mobilephone = obj.$("#dtomobilephone").val(); //手機號碼

if(mobilephone != null && mobilephone != '')$/.test(mobilephone)))

}

三、固定**號碼驗證

//3 驗證固定**號碼

var telphone = obj.$("#dtotelphone").val(); //固定**號碼

if(telphone != null && telphone != '')-?\d$/.test(telphone)))

}

四、郵編驗證

//4 驗證郵編

var postcode = obj.$("#dtopostcode").val(); //郵編

if(postcode != null && postcode != '')(?!\d)/.test(postcode)))

}

五、電子郵箱驗證

//5 驗證電子郵箱

var email = obj.$("#dtoemail").val(); //電子郵箱

if(email != null && email != ''))+$/.test(email)))

}

jQuery validate表單正則驗證功能詳解

手機號碼驗證 以下為引用內容 jquery.validator.addmethod mobile function value,element 15 0 9 d return this.optional element length 11 mobile.test value 手機號碼格式錯誤 號碼驗...

簡單正規表示式表單驗證例項

正規表示式表單驗證例項 1 是否帶有小數 function isdecimal strvalue 2 校驗是否由8位數字組成 function isnumber str return reg.test str 3 校驗 號碼格式 function istelnum str d 1 3584 d re...

element ui表單驗證 正則驗證

數字型別的驗證需要在 v model 處加上 number 的修飾符,這是 vue 自身提供的用於將繫結值轉化為 number 型別的修飾符。export default methods at position 209 resetfo refs formname resetfields const ...