我有这个输入字段
<td>
<input class="task-input" type="text" value="" ng-model="workflow.TaskDescription" ng-model-options="{ updateOn: 'blur' }"
ng-change="addActionButtons(workflow)" placeholder="Task" />
</td>
此字段必须填入每一行,并且当此字段为空时,用户无法填充下一行。如何在此上下文中使用required
或ng-required
?
答案 0 :(得分:0)
您可以使用html required
属性作为
<input class="task-input" type="text" value="" ng-model="workflow.TaskDescription" ng-model-options="{ updateOn: 'blur' }"
ng-change="addActionButtons(workflow)" placeholder="Task" required />
答案 1 :(得分:0)
使用ng-required =&#34; true&#34;内输入标签。
<td>
<input class="task-input" type="text" value="" ng-model="workflow.TaskDescription" ng-model-options="{ updateOn: 'blur' }"
ng-change="addActionButtons(workflow)" placeholder="Task" ng-required="true" />
</td>