本文实例讲述了js判断手机号运营商的方法。分享给大家供大家参考。具体如下:
在做WEB项目时,有时候需要根据用户的输入手机号码判断该号的运营商是移动、联通、电信或其他,再根据不同的运营商做出相应的处理,下面介绍js中如何判断手机号的运营商的代码。 js实现方法:
var utils = {
checkMobile: function(telphone){
telphone = this.trim(telphone);
if(telphone.length !== 11){
return this.setReturnJson(false,'未检测到正确的手机号码');
}
else{
if(isChinaMobile.test(telphone)){
return this.setReturnJson(true,'移动',{name: 'ChinaMobile'});
}
else if(isChinaUnion.test(telphone)){
return this.setReturnJson(true,'联通',{name: 'ChinaUnion'});
}
else if(isChinaTelcom.test(telphone)){
return this.setReturnJson(true,'电信',{name: 'ChinaTelcom'});
}
else if(isOtherTelphone.test(telphone)){
var num = isOtherTelphone.exec(telphone);
return this.setReturnJson(true,'',{name: ''});
}
else{
return this.setReturnJson(false,'未检测到正确的手机号码');
}
}
},setReturnJson: function(status,msg,data){
if(typeof status !== 'boolean' && typeof status !== 'number'){
status = false;
}
if(typeof msg !== 'string'){
msg = '';
}
return {
'status': status,'msg': msg,'data': data
};
}
}
希望本文所述对大家的javascript程序设计有所帮助。
原文链接:https://www.f2er.com/js/52021.html