这篇文章给大家分享的是有关AngularJs如何实现最新验证手机号码的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
实例如下:
<form name="signUpForm" novalidate>
<div class="form-group">
<div class="row clearfix">
<label for="tel1" class="col-xs-12" >L张蒙号码1:</label>
<div class="col-xs-12">
<input id="tel1" type="tel" name="tel1"
data-ng-model="vm.tel1"
ng-minlength="11"
ng-pattern="/^1[3|5][0-9]\d{4,8}$/" required
placeholder="请输入号码1:"/>
</div>
<div class="col-xs-12">
<p class="glyphicon glyphicon-ok input_result text-success"
ng-if="signUpForm.tel1.$valid"></p>
<p class="text-danger glyphicon glyphicon-remove"
ng-if="signUpForm.tel1.$error.required&&signUpForm.tel1.$touched">电话不能为空!</p>
<p class="text-danger glyphicon glyphicon-remove"
ng-if="(signUpForm.tel1.$error.minlength||signUpForm.tel1.$error.maxlength||signUpForm.tel1.$error.pattern)&&signUpForm.tel1.$touched">请输入有效手机号!</p>
</div>
</div>
</form>
感谢各位的阅读!关于“AngularJs如何实现最新验证手机号码”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!