Smile小新
2016-09-06 13:38
show在官网上的解释是——在模态框显示之前返回到主调函数中
那如果我想模态框显示之后再回到主调函数要怎么办呢?
(PS:我是用modal做了一个遮罩效果,想要在调用其他函数前显示,之后再隐藏,现在是等了好久之后一闪而过……)
$("#mymodal").on("show.bs.modal", function(e){
alert('before show');
}).on("shown.bs.modal",function(e){
alert('after show');
}).on("hide.bs.modal",function(e){
alert('before hide')
}).on("hidden.bs.modal",function(e){
alert('after hide')
});
这4个函数分别在显示前,后,隐藏前,后调用,有你需要的
玩转Bootstrap(基础)
314546 学习 · 2275 问题
相似问题
回答 1
回答 2