ホームページ > 記事 > ウェブフロントエンド > BootStrap での動的モーダル ボックスと静的モーダル ボックスのコード実装
この記事の内容は、BootStrap での動的モーダル ボックスと静的モーダル ボックスのコード実装に関するものです。必要な方は参考にしていただければ幸いです。
bootStrap フレームワークを使用するには、そのクラスをオーバーロードする必要があります。つまり、クラスが同じである必要があります
コードは次のとおりです:
動的モーダル ボックス
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <link rel="stylesheet" href="bootstrap-3.3.7/css/bootstrap.css"> <script src="bootstrap-3.3.7/js/jquery.min.js"></script> <script src="bootstrap-3.3.7/js/bootstrap.min.js"></script> <script src="bootstrap-3.3.7/js/docs.min.js"></script> </head> <body> <div> <div> <div>bootstrap框架 <small>s</small> </div> </div> <!-- 动态框 --> <div> <!-- modal默认是隐藏的 --> <div> <div> <!-- 头部关闭按钮 --> <div> <button type="button" class="close myclose" data-dismiss="modal"><span >×</span></button> <div class="h3 modal-title">标题部分</div> <!-- 内容部分 --> <div> <P>这是内容部分</P> </div> <!-- 页脚 --> <div> <button type="button" class="btn btn-primary myclose" data-dismiss="modal">Close</button> <button type="button" class="btn btn-warning myclose">save</button> </div> </div> </div> </div> </div> <a href="#" class="btn btn-success" id="show">显示对话框</a> </div> </body> </html> <script> $(function(){ $('#show').click(function(){ $('.modal').modal('show') }) }) </script>
静的モーダル ボックス
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <link rel="stylesheet" href="bootstrap-3.3.7/css/bootstrap.css"> <script src="bootstrap-3.3.7/js/jquery.min.js"></script> <script src="bootstrap-3.3.7/js/bootstrap.min.js"></script> <script src="bootstrap-3.3.7/js/docs.min.js"></script> </head> <body> <div> <div> <div>bootstrap框架 <small>s</small> </div> <!-- 静态模态框 官方有一个bug就是在写静态框的时候在按钮上要绑定同一个class--> <div> <div> <div> <button type="button" class="close myclose" data-dismiss="modal"> <span>×</span> </button> <h3>Model标题</h3> </div> <!-- body部分 --> <div> <p>这是身体部分</p> </div> <!-- footer部分 --> <div> <button class="btn btn-info myclose" data-dismiss="modal">close</button> <button class="btn btn-primary myclose">save</button> </div> </div> </div> </div> </div> </div> </div> </body> </html> <script> $(function(){ $('.myclose').click(function(){ $('.modal-dialog').css('display','none') }) }) </script>
関連する推奨事項:
HTML ではテーブルはどのように作成されるのでしょうか? (コード例)
HTMLとCSS3で2Dと3Dを組み合わせてアニメーション効果を実現する
以上がBootStrap での動的モーダル ボックスと静的モーダル ボックスのコード実装の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。