show bootstrap modal但停止传播show.bs.modal事件

时间:2017-03-22 22:29:11

标签: jquery twitter-bootstrap-3 bootstrap-modal

我想打开模态,但我不想要相关的事件show.bs.modal& shown.bs.modal传播。有没有办法做到这一点?

类似于$('#element').modal('show').stopPropagation()或有没有办法将调用包装到模态,以便没有事件可以流出?

1 个答案:

答案 0 :(得分:0)

尝试下面的代码

$(document).off ("show.bs.modal", "#element");
$('#element').modal('show');