如果字段无效,我想禁用按钮。我唯一的问题是表单中的字段来自ng-repeat。
<button ng-disabled="!documentForm.askedTime.$valid">SAVE</button>
<form name"documentForm>
<div ng-repeat="document in vm.documents">
<input name="askedTime //some regex here />
</div>
</form>
基本上,我只想在AskedTime中没有错误的情况下启用保存按钮
答案 0 :(得分:0)
基本上,我只想在AskedTime中没有错误的情况下启用保存按钮
<form name"documentForm">
<button ng-disabled="documentForm.$error"
ng-click="save()">
SAVE
</button>
<div ng-repeat="document in vm.documents">
<input name="askedTime_{{$index}}"
ng-model="document.askedTime"
required
/>
</div>
</form>
有关更多信息,请参见