/** |
* 返回类型 |
1 中国移动 |
2 中国联通 |
3 中国电信 |
0 无法识别 |
**/ |
|
function validate(phoneno){ |
|
var regex = /^(134|135|136|137|138|139|150|151|157|158|159)[0-9]{8}$/; |
if (regex.test(phoneno)){ |
alert( "中国移动!" ); |
return 1; |
} |
regex = /^(130|131|132|155|156)[0-9]{8}$/; |
if (regex.test(phoneno)){ |
alert( "中国联通!" ); |
return 2; |
} |
regex = /^(133|153|189)[0-9]{8}$/; |
if (regex.test(phoneno)){ |
alert( "中国电信!" ); |
return 3; |
} |
regex = /^(170)[0-9]{8}$/; |
if (regex.test(phoneno)){ |
alert( "虚拟运营商!" ); |
return 3; |
} |
return 0; |
} |
|
中国移动:134、135、136、137、138、139、150、151、152、157(TD)、158、159、182、183、184、187、188、147(数据卡) |
中国联通:130、131、132、152、155、156、185、186 |
中国电信:133、153、180、181、189 |