我在Angular 7项目中使用ng bootstrap进行模态窗口弹出,当模态打开时,第一个输入元素设置了自动聚焦,但是我不想为模态窗口的第一个字段自动聚焦,不知道为什么设置默认的自动对焦?请为此提供帮助
<ng-template #content let-modal><div class="modal-header"><h4 class="modal-title" id="modal-basic-title"><i class="icon-select"></i> Confirm</h4> </div>
<div class="modal-body">
<div class="form-group has-float-label">
<input class="form-control" id="Name" type="text"placeholder="Name" />
<label for="Name">sample</label>
</div>
</div>
<div class="modal-footer no-top-border">
<button class="btn btn-secondary" (click)="modal.close('Save click')">Cancel</button>
<button class="btn btn-primary" (click)="changeSuccessMessage(); modal.close('Save click')">OK</button>
</div>
</ng-template>