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

前端之家收集整理的这篇文章主要介绍了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()
      }
原文链接:https://www.f2er.com/angularjs/145547.html

猜你在找的Angularjs相关文章