1. 程式人生 > >Bootstrap多層模態框如何巢狀?

Bootstrap多層模態框如何巢狀?

我希望,首先開啟模態框1,然後開啟模態框2,然後關閉模態框2,然後關閉模態框1.
但是我發現開啟模態框1再開啟模態框2的時候,模態框2被模態框1壓住了,我希望模態框2壓住模態框1.
於是不會了~求教

我知道bootstap是不支援多層模態框,但是還是希望完成這個功能,請知道答案的人回答一下謝謝!

提問者採納
使用js去彈出第二個模態框 其一:
<!DOCTYPE html>
<html>

    <head>
        <meta charset='utf-8'>
        <title>bootstrap模態框(modal)</title>
        <link href="../../css/bootstrap.min.css" rel="stylesheet">
        <script src="../../js/jquery-2.1.1.min.js"></script>
        <script src="../../js/bootstrap.min.js"></script>
        <!--jquery必須是1.9.0版本以上的
   -->
        <script>
            $(function(){
                      $("#btn2").click(function(){
                       
                       $("#show2").modal("show");
                   });
                 
             })
        </script>
    </head>

    <body>

        <div class="container ">

            <h1 class="page-header">bootstrap模態框(modal)</h1>

            <button class="btn btn-primary" data-toggle='modal' data-target='#show'>登陸</button>

            <div class="modal fade  " id='show' >
                <div class="modal-dialog">
                    <div class="modal-content">

                        <button class="close" data-dismiss='modal'>×</button>
                        <h1 class="modal-title">一層模態框</h1>
                        <div class="modal-footer">
                            <button class="btn btn-primary" data-toggle='modal' id="btn2">再彈</button>
                        </div>
                    </div>
                </div>
            </div>

            <div class="modal fade  " id='show2'>
                <div class="modal-dialog">
                    <div class="modal-content">

                        <button class="close" data-dismiss='modal'>×</button>
                            <h1 class="modal-title">二層模態框</h1>
                        <div class="modal-body">
                            12312312
                        </div>
                        <div class="modal-footer">
                            
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </body>
</html>


很好,非常感謝,很好的解決了我的難題,就是bootstrap模態框無法重疊的問題,不過第二個模態框我沒使用js呼叫方式,而還是使用第一個模態框彈出來的方式,即: <button class="btn btn-primary" data-toggle='modal' id="btn2" data-target="#show2">再彈 </button> 好用,非常感謝~!

其二:

這篇文章主要介紹了使用jQuery和Bootstrap實現多層、自適應模態視窗,需要的朋友可以參考下本篇實踐一個多層模態視窗,而且是自適應的。點選頁面上的一個按鈕,彈出第一層自適應模態視窗。在第一層模態視窗內包含一個按鈕,點選該按鈕彈出第二層模態視窗,彈出的第二層模態視窗會擋住第一層模態視窗,即第二層模態視窗開啟的時候,無法關閉第一層模態視窗。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>test2.html</title>
	<link href="../css/bootstrap.min.css" rel="stylesheet">
	<script src="../js/jquery-2.1.1.min.js"></script>
	<script src="../js/bootstrap.js"></script>
    <style type="text/css">
        .modal-open,
        .modal-open .navbar-fixed-top,
        .modal-open .navbar-fixed-bottom {
            margin-right: 0;
        }
        .modal {
            bottom: auto;            
            padding: 0;
            background-color: #ffffff;
            border: 1px solid #999999;
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
            box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
            background-clip: padding-box;
            overflow-y: auto;
        }
        .modal.container {
            max-width: none;
        }
        #firstmodal {
            width: 98%;
            height: 98%;
        }
        #secondmodal {
            width: 55%;
            height: 55%;
        }
    </style>
    <script type="text/javascript">
        $(function() {
            $('#m1').on("click", function() {
                $('#firstmodal').modal();
            });
            $('#m2').on("click", function () {
                $('#secondmodal').modal();
            });
        });
    </script>
</head>
<body>
        <div class="content" style="margin-left: 100px;margin-top: 100px;">
            <button class="btn btn-primary btn-lg" id="m1">開啟第一層模態視窗</button>
        </div>
        <div id="firstmodal" class="modal container fade" tabindex="-1" style="display: none;">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
                <h4 class="modal-title">第一層模態視窗</h4>
            </div>
            <div class="modal-body">
                <p>
                    <button class="btn btn-primary btn-lg" id="m2">開啟第二層模態視窗</button>
                    第一層主體內容主體內容主體內容主體內容主體內容主體內容主體內容主體
             
                </p>
            </div>
            <div class="modal-footer" style="text-align: center;">
                <button type="button" data-dismiss="modal" class="btn btn-default">關閉</button>
            </div>
        </div>
        <div id="secondmodal" class="modal container fade" tabindex="-1" style="display: none;">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
                <h4 class="modal-title">第二層模態視窗</h4>
            </div>
            <div class="modal-body">
                <p>
                    第二層主體內容主體內容主體內容主體內
                </p>
            </div>
            <div class="modal-footer" style="text-align: center;">
                <button type="button" data-dismiss="modal" class="btn btn-default">關閉</button>
            </div>
        </div>
</body>
</html>


以上就是jQuery和Bootstrap實現多層、自適應模態視窗的全部內容了,非常的不錯,而且很實用,直接就可以使用到專案中去。