欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

input 手机号码输入验证

程序员文章站 2022-04-04 10:42:26
...

手机号码输入验证:

 function isPhoneNum(str) {
                return /^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57])[0-9]{8}$/.test(str)
            }

案例:

 if ($('#phone').val()!="") 
 {
                  var Phonenumber = $('#phone').val();
                    if (!isPhoneNum(Phonenumber))
                    {
                        layer.msg("手机号码输入不正确!")
                        $('#phone').focus();
                        return false;
                    };       
      }
<input type="number" class="input-text radius size-MINI" style="width:120px" id="phone" name="phone" >

摘自:https://blog.csdn.net/jason_renyu/article/details/79241590