bootstrap多層modal彈窗時。當子窗口關閉時,所有父窗口一起關閉。
原因是bootstrap在窗口關閉事件委托時,委托給所有窗口。
如源碼:
this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
改進為:
this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]:first', $.proxy(this.hide, this)) this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]:last', $.proxy(this.hide, this))