本文主要是介绍bootstrap-model实现双层弹框;,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
bootstrap默认的模态窗弹出双层时是有问题的,一般第二个弹出的窗口会在第一个窗口遮罩层的下边,并且样式也会被影响掉;
按照以下方法,就可以显示双层弹出,并且如果第一层有滚动条,也不会影响第一层的滚动条;
一,首先第二层的弹框要加一个隐藏的样式;
例如:
<div class="modal fade " id="talkAndVideo_model" tabindex="-1" role="dialog" style="display: none" aria-labelledby="myModalLabel"
二,将以下方法直接粘到js内
$(document).on('show.bs.modal', '.modal', function(event) {$(this).appendTo($('body'));}).on('shown.bs.modal', '.modal.in', function(event) {setModalsAndBackdropsOrder();}).on('hidden.bs.modal', '.modal', function(event) {// setModalsAndBackdropsOrder();
//触发隐藏事件时
//优化第二层弹出后再关闭时,影响了第一层的滚动条if ($('.modal.in').size() >= 1) {$('body').addClass('modal-open')}});function setModalsAndBackdropsOrder() {var modalZIndex = 1040;$('.modal.in').each(function(index) {var $modal = $(this);modalZIndex++;$modal.css('zIndex', modalZIndex);$modal.next('.modal-backdrop.in').addClass('hidden').css('zIndex', modalZIndex - 1);});$('.modal.in:visible:last').focus().next('.modal-backdrop.in').removeClass('hidden');}
这篇关于bootstrap-model实现双层弹框;的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!