如何使用输入中所需的

时间:2015-09-03 08:04:24

标签: html angularjs

我有这个输入字段

<td>
    <input class="task-input" type="text" value="" ng-model="workflow.TaskDescription" ng-model-options="{ updateOn: 'blur' }" 
    ng-change="addActionButtons(workflow)" placeholder="Task" />
</td>

此字段必须填入每一行,并且当此字段为空时,用户无法填充下一行。如何在此上下文中使用requiredng-required

2 个答案:

答案 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>