AngularJs的自定义的正则校验指令--代码共享

前端之家收集整理的这篇文章主要介绍了AngularJs的自定义的正则校验指令--代码共享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.对URL地址值的格式校验

2.对纯数字做校验



3.使用方式

比如校验http:

<span style="font-size:14px;"><input type="text" class="form-control" valid-http="{{值}}" name="xuexi"/>
<small class="error" ng-show="myForm.xuexi</span><span style="font-size:14px;">.$error.http">
    *数据格式不合法(如:http://xxx)
</small></span>
比如校验数字:

<span style="font-size:14px;"><input type="text" class="form-control" valid-http="{{值}}" name="xuexi"/>
<small class="error" ng-show="myForm.xuexi</span><span style="font-size:14px;">.$error.number">
    *数据必须为纯数字
</small></span>


(注:以上代码包下载地址:http://download.csdn.net/detail/foreversilent/9567661

原文链接:https://www.f2er.com/angularjs/149239.html

猜你在找的Angularjs相关文章