bootstrap popup modal框基本使用方法

HTML:


js:

$('#Id).modal('show');

常用按钮:


关闭下一层modal框后,上一层不能滚动的问题:

$(".notLastModal").on("hidden.bs.modal",function(){
  $(document.body).addClass("modal-open");
});

参考文档:css3menu.com/web-design/bootstrap-modal-popup-form-1671.html

你可能感兴趣的:(bootstrap popup modal框基本使用方法)