句柄 Bootstrap 关闭模态

Handle Bootstrap Close Modal

我知道这是一个老问题,但我想知道是否有 Bootstrap 模式关闭事件的回调在关闭事件被处理之前实际运行 浏览器。模式通常在内容销毁之前关闭。

          $('#div').on('hidden.bs.modal', function () {
             var cropper = $('#ferret').imgAreaSelect({ remove : true});     
          });

imageAreaSelect 组件不会像模态窗口关闭那样快速删除,因为它仅在模态窗口关闭后运行。

hide方法被调用时隐藏之前有一个事件:

hide.bs.modal This event is fired immediately when the hide instance method has been called.

$('#div').on('hide.bs.modal', function () {...

bootstrap modal events here