0
点赞
收藏
分享

微信扫一扫

Angular4_bootstrap模态框打开关闭,点击背景事件


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()
}



举报

相关推荐

0 条评论