作者:
WangMin
格言:努力做好自己喜欢的每一件事
CSDN原创文章
博客地址 👉 WangMin
注意:
- 模态框不支持嵌套,需要嵌套模态框的话,只能自己手动实现。
- 模态框包含的html最好尽量作为body的直接子元素,以避免其他组件影响模态框的展现和功能。
- 弹出层出来以后,页面的滚动条会被覆盖。
模态框主体结构包含了模态框的头、体和一组放置于底部的按钮 :
- modal 弹出层父级
- modal-dialog 弹出层
- modal-content 弹出层的内容区域
- modal-header 弹出层的头部区域
- modal-body 弹出层的主体区域
- modal-footer 弹出层的底部区域
- fade 让弹出层有一个运动的效果,加给弹出层父级
基本结构代码如下:
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×
</button>
</div>
<div class="modal-body">
code。。。
</div><!--modal-body-->
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
<!--modal-footer-->
</div><!-- modal-content -->
</div><!--modal-dialog -->
</div>