美文网首页
angularjs表单验证

angularjs表单验证

作者: 我有故事你有酒吗_56dd | 来源:发表于2017-12-12 16:10 被阅读0次
    <div class="col-md-6">
                <div class="form-group">
                  <label>手机号<span class="symbol required"></span></label>
                  <input ng-model="cellphone" name="cellphone" type="tel" ng-pattern="/^[1][358][0-9]{9}$/"
                         class="form-control" required/>
                   <p>
                            <span style="color: red" ng-show="Form.availableShipQty.$invalid">
                            <span ng-show="Form.cellphone.$error.cellphone">请输入正确的手机号</span>
                             </span>
    
                      </p>
              </div>
    </div>
    

    相关文章

      网友评论

          本文标题:angularjs表单验证

          本文链接:https://www.haomeiwen.com/subject/gcjnixtx.html