js正则表达式匹配校验手机号码
扩展jquery.validate
/* * 中国移动号段大全: 2G手机号段大全:134、135、136、137、138、139、150、151、152、157、158、159; 3G手机号段大全:182、187、188; 中国联通号段大全: 2G手机号段大全:130、131、132、155、156; 3G手机号段大全:185、186; 中国电信号段大全: 2G手机号段大全:133、153; 3G手机号段大全:180、189 * 2011-10-31 * author LiuDong * */ $.validator.addMethod('isMobile', function(value, element) { var length = value.length; return this.optional(element) || length == 11 && /^13[0-9]{1}[0-9]{8}$|^15[012356789]{1}[0-9]{8}$|^18[0256789]{1}[0-9]{8}$/.test(value); }, '请输入有效的手机号码');
使用示例
$(function() { $('#frmCustomerInfo').validate({ rules: { 'customer.contactTel': { digits: true, isMobile:"#customer.contactTel" //range: } }, messages: { 'tel': '请输入目前有效手机号(数字且为11位!)' } }); });
JS正则表达式大全
http://www.blogjava.net/onejavaer/articles/79070.html
相关推荐
qual0 2020-01-18
Kshine0 2011-03-15
xiaoxiaodedu 2019-11-02
88266432 2016-04-15
bobljm 2015-06-28
HelloJohn 2013-07-23
moji0 2011-10-09
alonemap 2013-02-26
iseeip 2010-06-12
阿蒙 2010-05-07
hotflyvip 2010-02-08
lendalscut 2009-06-27
zhencheng0000 2014-09-26
mxma 2014-07-02
beifenggo 2014-06-09
beifenggo 2014-06-03