时间:2021-05-18
1.要用bootStrap这个框架就必须要重载它的class类,也就是说class要一样
代码如下:
有疑问的可以在下面留言,欢迎大家一起交流
1.1动态模态框
<!DOCTYPE html><html lang="en"><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" rel="external nofollow" rel="external nofollow" > <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 class="container"> <div class="page-header"> <div class="h2">bootstrap框架 <small>s</small> </div> </div> <!-- 动态框 --><div class="modal"> <!-- modal默认是隐藏的 --> <div class="modal-dialog"> <div class="modal-content"> <!-- 头部关闭按钮 --> <div class="modal-header"> <button type="button" class="close myclose" data-dismiss="modal"><span >×</span></button> <div class="h3 modal-title">标题部分</div> <!-- 内容部分 --> <div class="modal-body"> <P>这是内容部分</P> </div> <!-- 页脚 --> <div class="modal-footer"> <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="#" rel="external nofollow" class="btn btn-success" id="show">显示对话框</a> </div></body></html><script> $(function(){ $('#show').click(function(){ $('.modal').modal('show') }) })</script>1.2静态模态框
<!DOCTYPE html><html lang="en"><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" rel="external nofollow" rel="external nofollow" > <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 class="container"> <div class="page-header"> <div class="h2">bootstrap框架 <small>s</small> </div> <!-- 静态模态框 官方有一个bug就是在写静态框的时候在按钮上要绑定同一个class--> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close myclose" data-dismiss="modal"> <span>×</span> </button> <h3>Model标题</h3> </div> <!-- body部分 --> <div class="modal-body"> <p>这是身体部分</p> </div> <!-- footer部分 --> <div class="modal-footer"> <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>总结
以上所述是小编给大家介绍的BootStrap的动态模态框及静态模态框,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
下表列出了模态框中要用到事件。这些事件可在函数中当钩子使用。实例下面的实例演示了事件的用法:Bootstrap实例-模态框(Modal)插件事件模态框(Moda
弹出模态框modal的实现方法及实例一个简单的点击列表修改按钮,弹出bootstrap模态框,修改状态传到后台php修改@endforeach×请修
小编主要从网上整理了网友提出来的关于bootstrap模态框消失的不同问题,希望对大家有帮助。状况一:bootstrap模态框瞬间消失解决bootstrap模态
本文实例为大家分享了bootstrap模态框的具体代码,供大家参考,具体内容如下XXXaaaaa×登录hahaheheheihei注册登录点击弹出完整模态框点击
本文实例为大家分享了Bootstrap模态框的两种使用状况,供大家参考,具体内容如下一.模态框的正常点击出现,如添加功能