Teal TealUI

中国移动运营商util/chineseMNO

获取手机号码所属的移动运营商。

<input type="text" pattern="\d{13}" id="input" placeholder="输入手机号">
<button onclick="check()">识别运营商</button>
<span id="output"></span>
<script>
function check() {
    output.innerHTML = {
        chinaMobile: "中国移动",
        chinaUnion: "中国联通",
        chinaTelcom: "中国电信",
        unknown: "未知"
    }[getMNO(input.value)];
}
</script>

API

函数 描述
getMNO(mobile)(mobile:string):string

获取手机号码所属的移动运营商。

参数 类型 描述 默认值
mobile* string

返回值

类型:"chinaMobile" | "chinaUnion" | "chinaTelcom" | "unknown"

返回运营商英文标识。

获取手机号码所属的移动运营商。