Bootstrap模态对话框用法简单示例
本文实例讲述了Bootstrap模态对话框用法。分享给大家供大家参考,具体如下:
环境:bootstrap-3.3.5,jquery-3.0.0
代码:
<!DOCTYPE html> <html> <head> <title>www.jb51.net bootstrap模态对话框</title> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="external nofollow" /> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap-theme.min.css" rel="external nofollow" /> <script src="https://cdn.bootcss.com/jquery/3.0.0/jquery.min.js" ></script> <script src="https://cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js" ></script> </head> <body> <h2>创建模态框(Modal)</h2> <!-- 按钮触发模态框 --> <button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal"> 开始演示模态框 </button> <!-- 模态框(Modal) --> <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> <h4 class="modal-title" id="myModalLabel"> 模态框(Modal)标题 </h4> </div> <div class="modal-body"> 在这里添加一些文本 </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭 </button> <button type="button" class="btn btn-primary"> 提交更改 </button> </div> </div><!-- /.modal-content --> </div><!-- /.modal --> </div> </body> </html>
小编已经将代码中所引用的bootstrap相关css、js文件全部换成了cdn形式,方便测试。
这里使用在线HTML/CSS/JavaScript代码运行工具:http://tools.jb51.net/code/HtmlJsRun测试,可得到如下显示效果:
PS:关于bootstrap布局,这里再为大家推荐一款本站的在线可视化布局工具供大家参考使用:
在线bootstrap可视化布局编辑工具:
http://tools.jb51.net/aideddesign/layoutit
希望本文所述对大家基于bootstrap的程序设计有所帮助。
相关文章
javascript获取wx.config内部字段解决微信分享
这篇文章主要介绍了javascript获取wx.config内部字段解决微信分享,需要的朋友可以参考下2016-03-03如何解决前端笔记本屏幕显示缩放比例125%,150%对页面布局的影响
如果要完整解决该缩放和布局问题,仍需适配,下面这篇文章主要给大家介绍了关于如何解决前端笔记本屏幕显示缩放比例125%,150%对页面布局的影响,需要的朋友可以参考下2022-11-11JavaScript 数组展平方法: flat() 和 flatMap()详解
从 ES2019 中开始引入了一种扁平化数组的新方法,可以展平任何深度的数组,这篇文章主要介绍了JavaScript 数组展平方法: flat() 和 flatMap()详解,需要的朋友可以参考下2023-06-06
最新评论