使用自动填充时的表单验证

时间:2018-01-07 01:37:36

标签: javascript html angularjs google-maps-api-3

我在提交表单之前根据需要设置了postal_code字段。

<input id="postal_code" ng-model="postal_code" class="field" ng-
minlength="6" ng-maxlength="18"  ng-pattern="phoneNumberFormat"  required > 

postal_code字段是根据用户使用Google Maps API输入的地址自动填充的,如下所示

<input type="text" id="autocomplete" onFocus="geolocate()" name= "address" 
ng-model="address" class="input-medium search-query"  ng-minlength="18" ng-
maxlength = "210" >

但是,当从API填充邮政编码时,邮政编码的必填字段永远不会设置为false,并且当前无法提交表单。由于该字段是可编辑的 - 需要进行必要的检查。

0 个答案:

没有答案