时间:2021-07-01 10:21:17 帮助过:27人阅读
实例如下:
<form name="signUpForm" novalidate>
<p class="form-group">
<p class="row clearfix">
<label for="tel1" class="col-xs-12" style="text-align: left">L张蒙号码1:</label>
<p style="text-align: center" 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
style="width: 80%;font-size: large"
placeholder="请输入号码1:"/>
</p>
<p 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>
</p>
</p>
</form>怎么样大家学会了吗?大家赶紧尝试一下吧。
相关推荐:
jQuery如何用正则表达式验证手机号、身份证号、中文名称
javascript - 正则验证手机号码的问题
验证手机号码的JS方法分享_javascript技巧
以上就是最新AngularJs 验证手机号码实例分享的详细内容,更多请关注Gxl网其它相关文章!