Angular:5.0.2 Bootstrap:4.0.0 ngx-bootstrap:2.0.2
Modal在Chrome中运行正常但在Internet Explorer 11中挂起。
这是从component.ts调用modalService:
this.modalRef = this.modalService.show(
template,
Object.assign({}, { backdrop: true }, { class: 'modal-dialog-custom-profile' })
);
使用html模板:
<button type="button" class=" fa fa-th-large pickerIcon no-padding-bottom" value="Open Selector" (click)="openModal(template)">
<ng-template #template>
谢谢!