服务器之家

服务器之家 > 正文

比较常用证件正则表达式验证大全

时间:2020-08-18 14:23     来源/作者:正则教程网

下面都是我收集的一些比较常用的正则表达式,因为平常可能在表单验证的时候,用到的比较多。特发出来,让各位朋友共同使用。

// 身份证验证  

?
1
2
3
4
5
6
7
8
jQuery.validator.addMethod("isIdCard", function(value, element, type) {
 if ($(type).val() === '1') {
 var re = /(^/d{15}$)|(^/d{18}$)|(^/d{17}(/d|X|x)$)/;
 return this.optional(element) || (re.test(value));
 } else {
  return true;
 }
}, "身份证格式不正确");

 

// 护照验证

?
1
2
3
4
5
6
7
8
9
jQuery.validator.addMethod("isPassport", function(value, element, type) {
 if ($(type).val() === '2') {
 var re1 = /^[a-zA-Z]{5,17}$/;
 var re2 = /^[a-zA-Z0-9]{5,17}$/;
 return this.optional(element) || (re2.test(value)) || re1.test(value);
 } else {
 return true;
 }
}, "护照格式不正确");

 

// 港澳通行证验证

?
1
2
3
4
5
6
7
8
jQuery.validator.addMethod("isHKMacao", function(value, element, type) {
 if ($(type).val() === '3') {
 var re = /^[HMhm]{1}([0-9]{10}|[0-9]{8})$/;
 return this.optional(element) || (re.test(value));
 } else {
 return true;
 }
}, "港澳通行证格式不正确");

 

// 台湾通行证验证

?
1
2
3
4
5
6
7
8
9
jQuery.validator.addMethod("isTaiwan", function(value, element, type) {
 if ($(type).val() == "4") {
 var re1 = /^[0-9]{8}$/;
 var re2 = /^[0-9]{10}$/;
 return this.optional(element) || (re1.test(value)) || (re2.test(value))
 } else {
 return true;
 }
}, "台湾通行证格式不正确");

以上内容是小编给大家介绍比较常用证件正则表达式验证大全,希望大家喜欢。

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
最新idea2020注册码永久激活(激活到2100年)
最新idea2020注册码永久激活(激活到2100年) 2020-07-29
返回顶部