我有这种情况,我分两步显示 1 个表格。因此,要进入表单的第二部分,您必须单击一个按钮。但在继续之前,我想执行表单验证(需要填写所有必填字段)。但是因为这是一个普通的按钮,所以不会触发整个提交魔术,也不会发生验证。所以我感兴趣的问题是如何在我的控制器中触发表单验证?触发特定字段的验证会更好。只是给出一个想法,表格看起来像
<form name="form" submit="save()">
<section id="step1">
<label for="username" required>Username</label>
<input type="text" name="username" ng-model="user.username" required />
.....
<button ng-click="proceed()">Proceed</button>
</section>
<section id="step2">
<label ...></label>
<input...>
....
<button type="submit">Save</button>
</section>
</form>
另外,在所有必填字段都有效之前,我不想选择禁用按钮。