标签: jquery twitter-bootstrap-3 bootstrap-modal
我想打开模态,但我不想要相关的事件show.bs.modal& shown.bs.modal传播。有没有办法做到这一点?
show.bs.modal
shown.bs.modal
类似于$('#element').modal('show').stopPropagation()或有没有办法将调用包装到模态,以便没有事件可以流出?
$('#element').modal('show').stopPropagation()
答案 0 :(得分:0)
尝试下面的代码
$(document).off ("show.bs.modal", "#element"); $('#element').modal('show');