我有这个输入字段:
<input type="number" class="form-control zip" name="postalCode" data-ng-mode
实际上是这些检查:
<div class="errorMessage col-sm-offset-0" data-ng-show="createContactForm.postalCode.$error.minlength && !createContactForm.postalCode.$pristine">...</div>
<div class="errorMessage col-sm-offset-0" data-ng-show="createContactForm.postalCode.$error.maxlength && !createContactForm.postalCode.$pristine">...</div>
是否还检查数字输入字段中是否没有输入数字?