我需要在Bootstrap
模式下执行一个函数,然后再打开它。目前,我在文档中发现了以下事件:show.bs.modal
。
我试图将此绑定到模式:
$('#my-modal').on('show.bs.modal', function(){
alert(true);
});
问题在于alert
在打开模式之前显示。
模态打开后有什么方法可以调用函数吗?
答案 0 :(得分:1)
此代码应帮助:
$('#my-modal').on('shown.bs.modal', function(){
alert(true);
});
只需将显示更改为显示即可。