Angular4_bootstrap模态框打开关闭,点击背景事件,手动触发模态框关闭事件
this.modalService.open(this.warnningModal).result.then((result) => { if (result === 'Close') { this.focusCarrierBox(); }
// 这里是modal 的ok和close 事件
},(reason) => { this.focusHuIdBox();
// 这里是点击背景出发的事件 });
// 这里是手动关闭模态框。 求其他方法 const button = document.getElementById('closeModalButton'); if (button) { button.click() }原文链接:https://www.f2er.com/angularjs/145547.html