我在页面上有一个用html编写的表单,表单上方有一个按钮。 现在我想知道我可以添加到按钮的功能,这样当我按下按钮时,它将直接添加我已经在页面下方的相同表单,这样我就可以进行多次提交。
//形式
<button>Add Form</button>
<form>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="title">Title</label>
<input type="text" class="form-control" id="title" name="title" placeholder="Title">
</div>
</div>
</form>
答案 0 :(得分:1)
<button (click)=" Add some value to forms array ">Add Form</button>
<div *ngFor="let form of forms">
<form>
<!-- Your Form -->
</form>
</div>