bootstrap

本文介绍了Bootstrap的基本使用,包括页面模板、布局容器、栅格系统、排版样式、表单元素和样式、缩略图与面板、导航及分页。Bootstrap简化了前端开发,提供了一套响应式、移动设备优先的流式栅格系统,用于快速创建美观且适应各种屏幕尺寸的网页。此外,还展示了如何使用下拉菜单和模态框等插件。
摘要由CSDN通过智能技术生成

bootstrap

我们平时编写一个前端页面会用到css用来修饰页面,用js来添加一些交互。但是对于前端小白或者后端程序员来说,编写一些好看的页面还是比较困难的。bootstrap就是用来解决这个问题的,bootstrap其实就是对css和js文件的一个封装,同时因为bootstrap的核心js依赖jquery的核心js,所以使用bootstrap是一般还要导入jQuery文件。

note:我们并不需要记住bootstrap的所有用法,随用随取就好了。

下面将会用例子来解释如何使用bootstrap。先来看一下目录结构:
在这里插入图片描述
在这里插入图片描述

01 bootstrap的页面模板

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
    <script src="js/jquery-3.4.1.js"></script>
    <script src="bootstrap/js//bootstrap.min.js"></script>
</head>
<body>
    hello world
</body>
</html>

02 布局容器

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
</head>

<body>
    <!-- 布局容器,固定宽度 -->
    <div class="container">固定宽度</div>

    <!-- 布局容器,固定宽度 -->
    <div class="container-fluid">完整宽度</div>
</body>
</html>

03 栅格网格系统

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
</head>
<body>
    <!-- 容器 -->
    <div class="container">
        <!-- 列 -->
        <div class="row">
            <!-- 一行最多十二列 -->
            <!-- 屏幕尺寸: xs 超小,sm 小,md 中,lg 大 -->
            <!-- 列组合 -->
            <div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">4</div>
            <div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">8</div>
        </div>

        <div class="row">
            <!-- 列偏移,向右移动指定距离 -->
            <div class="col-md-4">4</div>
            <div class="col-md-4 col-md-offset-2">4</div>
        </div>

        <div class="row">
            <!-- 列排序,向指定方向浮动 -->
            <div class="col-md-3" style="background-color: aqua;">3</div>
            <!-- 向前 -->
            <div class="col-md-3 col-md-pull-1" style="background-color: rgb(240, 225, 25);">3</div>
            <!-- 向后 -->
            <div class="col-md-3 col-md-push-1" style="background-color: rgb(75, 30, 158);">3</div>
            <div class="col-md-3" style="background-color: rgb(218, 32, 177);">3</div>
        </div>

        <div class="row">
            <!-- 列嵌套,列还可以再分 -->
            <div class="col-md-6" style="background-color: aqua;">
                <div class="row">
                    <div class="col-md-1" style="background-color: blueviolet;">1</div>
                    <div class="col-md-9" style="background-color: rgb(190, 21, 21);">9</div>
                </div>
            </div>
            <div class="col-md-6" style="background-color: rgb(240, 225, 25);">6</div>
        </div>

        <div class="row">
            <!-- 自适应 -->
            <div class="col-md-3 col-sm-6" style="background-color: aqua;">3</div>
            <div class="col-md-3 col-sm-6" style="background-color: rgb(240, 225, 25);">3</div>
            <div class="col-md-3 col-sm-6" style="background-color: rgb(75, 30, 158);">3</div>
            <div class="col-md-3 col-sm-6" style="background-color: rgb(218, 32, 177);">3</div>
        </div>
    </div>
</body>
</html>

04 常用样式-排版

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
</head>
<body>
    <!-- 常用样式
            1.标题
                bootstrap对h1-h6的标题效果进行覆盖
                提供了对应的类名,为非标题元素设置样式 .h1-.h6
                副标题small标签或.small类名 -->
    <h1>主标题
        <small>
            副标题
        </small>
    </h1>

    <h2>
        主标题
        <span class="small">副标题</span>
    </h2>

    <div class="h1">标题</div>

    <hr>

    <!-- 2.段落 -->
    <p>我只爱爱我的人,因为我不懂怎样去爱一个不爱我的人</p>
    <!-- 加粗效果 -->
    <p class="lead">我只爱<strong>爱我</strong>的人,因为我不懂怎样去爱一个<b>不爱</b>我的人</p>
    <!-- 倾斜效果 -->
    <p class="lead">我只爱<i>爱我</i>的人,因为我不懂怎样去爱一个<em>不爱</em>我的人</p>
    <!-- 缩小效果 -->
    <p class="lead">我只爱<small>爱我</small>的人,因为我不懂怎样去爱一个不爱我的人</p>

    <hr>

    <!-- 3.强调 -->
    <div class="text-muted">提示</div>
    <div class="text-primary">主要</div>
    <div class="text-success">成功</div>
    <div class="text-info">信息</div>
    <div class="text-warning">警告</div>
    <div class="text-danger">危险</div>

    <hr>

    <!-- 4.对齐 -->
    <!-- 左对齐 -->
    <p class="text-left">我只爱爱我的人,因为我不懂怎样去爱一个不爱我的人</p>
    <!-- 右对齐 -->
    <p class="text-right">我只爱爱我的人,因为我不懂怎样去爱一个不爱我的人</p>
    <!-- 居中对其 -->
    <p class="text-center">我只爱爱我的人,因为我不懂怎样去爱一个不爱我的人</p>
    <!-- 两端对齐 -->
    <p class="text-justify">我只爱爱我的人,因为我不懂怎样去爱一个不爱我的人</p>

    <hr>

    <!-- 5.列表 -->
    <!-- 无序列表 -->
    <ul>
        <li>项目一</li>
        <li>项目二</li>
    </ul>

    <!-- 有序列表 -->
    <ol>
        <li>项目一</li>
        <li>项目二</li>
    </ol>

    <!-- 自定义列表 -->
    <dl>
        <dt>HTML</dt>
        <dd>超文本标记语言</dd>
        <dt>CSS</dt>
        <dd>层叠样式表是一种样式表语言</dd>
    </dl>

    <!-- 去点列表 -->
    <ul class="list-unstyled">
        <li>项目一</li>
        <li>项目二</li>
    </ul>

    <!-- 内联列表 -->
    <ul class="list-inline">
        <li>项目一</li>
        <li>项目二</li>
    </ul>

    <!-- 自定义列表 内敛列表 -->
    <dl class="dl-horizontal">
        <dt>HTML 超文本标记语言</dt>
        <dd>HTML称为超文本标记语言,是一种标识性语言</dd>
        <dt>测试标题不能超过160px的宽度,否则会变成点</dt>
        <dd>层叠样式表是一种样式表语言</dd>
    </dl>

    <hr>

    <!-- 6.代码 -->
    <!-- 单行代码 -->
    <code>this is a simple code</code>

    <!-- 快捷键 -->
    <p>使用<kbd>ctrl</kbd> + <kbd>s</kbd>保存内容</p>
    
    <!-- 多行代码 -->
    <pre>
public class HelloWorld{
    private int age;
}
    </pre>

    <!-- 显示html代码,需要使用字符实体 -->

    <!-- 当长度超过指定值时,可以添加滚动条 -->
    <pre class="pre-scrollable">
        <ol>
            <li>......</li>
            <li>......</li>
            <li>......</li>
            <li>......</li>
            <li>......</li>
            <li>......</li>
            <li>......</li>
            <li>......</li>
            <li>......</li>
        </ol>
    </pre>

    <hr>

    <!-- 7.表格 -->
    <table class="table">
        <tr>
            <th>JavaSE</th>
            <th>数据库</th>
            <th>JavaScript</th>
        </tr>
        <tr>
            <th>面向对象</th>
            <th>oracle</th>
            <th>json</th>
        </tr>
        <tr>
            <th>数组</th>
            <th>mysql</th>
            <th>ajax</th>
        </tr>
    </table>

    <!-- 有边框 -->
    <table class="table table-bordered">
        <tr>
            <th>JavaSE</th>
            <th>数据库</th>
            <th>JavaScript</th>
        </tr>
        <tr>
            <th>面向对象</th>
            <th>oracle</th>
            <th>json</th>
        </tr>
        <tr>
            <th>数组</th>
            <th>mysql</th>
            <th>ajax</th>
        </tr>
    </table>

    <!-- 有边框,隔行换色 -->
    <table class="table table-bordered table-striped">
        <tr>
            <th>JavaSE</th>
            <th>数据库</th>
            <th>JavaScript</th>
        </tr>
        <tr>
            <th>面向对象</th>
            <th>oracle</th>
            <th>json</th>
        </tr>
        <tr>
            <th>数组</th>
            <th>mysql</th>
            <th>ajax</th>
        </tr>
    </table>

    <!-- 有边框,隔行换色,鼠标放上有高亮效果 -->
    <table class="table table-bordered table-striped table-hover">
        <tr>
            <th>JavaSE</th>
            <th>数据库</th>
            <th>JavaScript</th>
        </tr>
        <tr>
            <th>面向对象</th>
            <th>oracle</th>
            <th>json</th>
        </tr>
        <tr>
            <th>数组</th>
            <th>mysql</th>
            <th>ajax</th>
        </tr>
    </table>

    <!-- 有边框,隔行换色,鼠标放上有高亮效果,紧凑一点 -->
    <table class="table table-bordered table-striped table-hover table-condensed">
        <tr>
            <th>JavaSE</th>
            <th>数据库</th>
            <th>JavaScript</th>
        </tr>
        <tr>
            <th>面向对象</th>
            <th>oracle</th>
            <th>json</th>
        </tr>
        <tr>
            <th>数组</th>
            <th>mysql</th>
            <th>ajax</th>
        </tr>
    </table>
</body>
</html>

05 常用样式-表单

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
</head>
<body>

    <!-- 1.文本框 -->

    <!-- 使用栅格网格修饰 -->
    <div class="row">
        <div class="col-md-3">
            <input type="text" class="form-control"><br>
            <!-- 控制文本框的大小 -->
            <input type="text" class="form-control input-lg"><br>
            <input type="text" class="form-control input-sm"><br>
        </div>
    </div>

    <!-- 2.下拉框 -->
    <div class="row">
        <div class="col-md-3">
            <select class="form-control">
                <option>请选择城市</option>
                <option>上海</option>
                <option>北京</option>
                <option>深圳</option>
            </select>
        </div>
    </div>

    <!-- 3.文本域 -->
    <div class="row">
        <div class="col-md-3">
            <textarea class="form-control">
            </textarea>
        </div>
    </div>

    <!-- 4.复选框 -->
    <!-- 垂直显示 -->
    <div class="row">
        <div class="col-md-3">
            <div class="checkbox">
                <label><input type="checkbox" name="hobby"> 唱歌</label>
            </div>
            <div class="checkbox">
                <label><input type="checkbox" name="hobby"> 跳舞</label>
            </div>
        </div>
    </div>

    <!-- 水平显示 -->
    <div class="row">
        <div class="col-md-3">
            <label class="checkbox-inline"><input type="checkbox" name="hobby"> 唱歌</label>
            <label class="checkbox-inline"><input type="checkbox" name="hobby"> 跳舞</label>
        </div>
    </div>

    <!-- 5.单选框 -->
    <!-- 垂直显示 -->
    <div class="row">
        <div class="col-md-3">
            <div class="radio">
                <label><input type="radio" name="sex1" value="male"></label>
            </div>
            <div class="radio">
                <label><input type="radio" name="sex1" value="female"></label>
            </div>
        </div>
    </div>

    <!-- 水平显示 -->
    <div class="row">
        <div class="col-md-3">
            <label class="radio-inline"><input type="radio" name="sex2" value="male"></label>
            <label class="radio-inline"><input type="radio" name="sex2" value="female"></label>
        </div>
    </div>

    <!-- 6.按钮 -->
    <button class="btn">按钮</button>
    <button class="btn btn-danger">按钮</button>
    <button class="btn btn-success">按钮</button>
    <button class="btn btn-warning">按钮</button>
    <button class="btn btn-primary">按钮</button>
    <button class="btn btn-info">按钮</button>
    <button class="btn btn-default">按钮</button>
    <button class="btn btn-link">按钮</button>

    <!-- 可以把其它标签变成按钮 -->
    <a href="#" class="btn btn-success">a标签</a>
    <span class="btn btn-warning">span标签</span>
    <div class="btn btn-default">div标签</div>

    <!-- 设置按钮的大小 -->
    <button class="btn btn-danger">按钮</button>
    <button class="btn btn-success btn-lg">按钮</button>
    <button class="btn btn-warning btn-sm">按钮</button>
    <button class="btn btn-warning btn-xs">按钮</button>

    <!-- 按钮禁用 -->
    <button class="btn btn-danger" onclick="alert('hello')">按钮</button>
    <!-- 真正的禁用 -->
    <button class="btn btn-success" onclick="alert('hello')" disabled="disabled">按钮</button>
    <!-- 只是样式上的禁用 -->
    <button class="btn btn-warning disabled" onclick="alert('hello')">按钮</button>


    <hr>

    <!-- 7.表单布局 -->
    <!-- 水平表单 -->
    <form action="#" method="post" class="form-horizontal" role="form">
        <!-- 表单中的表单元素组 -->
        <div class="form-group">
            <!-- 这里label标签是用来聚焦的 -->
            <label for="uname" class="control-label col-md-2">姓名</label>
            <div class="col-md-8">
                <input type="text" id="uname" class="form-control" placeholder="请输入姓名">
            </div>
        </div>
        <div class="form-group">
            <label for="upwd" class="control-label col-md-2">密码</label>
            <div class="col-md-8">
                <input type="text" id="upwd" class="form-control" placeholder="请输入密码">
            </div>
        </div>
        <div class="form-group">
            <label class="control-label col-md-2">爱好</label>
            <div class="col-md-3">
                <label class="checkbox-inline"><input type="checkbox" name="hobby"> 唱歌</label>
                <label class="checkbox-inline"><input type="checkbox" name="hobby"> 跳舞</label>
            </div>
        </div>
        <div class="form-group">
            <label class="control-label col-md-2">城市</label>
            <div class="col-md-3">
                <select class="form-control">
                    <option>请选择城市</option>
                    <option>上海</option>
                    <option>北京</option>
                    <option>深圳</option>
                </select>
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-3 col-md-offset-5">
                <button class="btn btn-danger" onclick="alert('hello')">按钮</button>
            </div>
        </div>
    </form>

    <!-- 内联表单,全部在一行显示 -->
    <form action="#" method="post" class="form-inline" role="form">
        <div class="form-group">
            <!-- 这里label标签是用来聚焦的 -->
            <label for="username" class="control-label">姓名</label>
            <input type="text" id="username" class="form-control" placeholder="请输入姓名">
        </div>
        <div class="form-group">
            <label for="userpwd" class="control-label">密码</label>
            <input type="text" id="userpwd" class="form-control" placeholder="请输入密码">
        </div>
        <div class="form-group">
            <label class="control-label">爱好</label>
            <label class="checkbox-inline"><input type="checkbox" name="hobby"> 唱歌</label>
            <label class="checkbox-inline"><input type="checkbox" name="hobby"> 跳舞</label>
        </div>
        <div class="form-group">
            <label class="control-label">城市</label>
            <select class="form-control">
                <option>请选择城市</option>
                <option>上海</option>
                <option>北京</option>
                <option>深圳</option>
            </select>
        </div>
        <div class="form-group">
            <button class="btn btn-danger" onclick="alert('hello')">按钮</button>
        </div>
    </form>

</body>
</html>

06 常用样式-缩略图和面板

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
</head>
<body>
    <div class="container">
        <div class="row">
            <!-- 缩略图 -->
            <div class="col-md-3">
                <div class="thumbnail">
                    <img src="img/1.JPG" >
                <button class="btn">
                    <span class="glyphicon glyphicon-heart">点赞</span>
                </button>
                <button class="btn">
                    <span class="glyphicon glyphicon-pencil">评论</span>
                </button>
                </div>
            </div>
    
            <div class="col-md-3">
                <div class="thumbnail">
                    <img src="img/1.JPG" >
                <button class="btn">
                    <span class="glyphicon glyphicon-heart">点赞</span>
                </button>
                <button class="btn">
                    <span class="glyphicon glyphicon-pencil">评论</span>
                </button>
                </div>        </div>
    
            <div class="col-md-3">
                <div class="thumbnail">
                    <img src="img/1.JPG" >
                <button class="btn">
                    <span class="glyphicon glyphicon-heart">点赞</span>
                </button>
                <button class="btn">
                    <span class="glyphicon glyphicon-pencil">评论</span>
                </button>
                </div>        </div>
    
            <div class="col-md-3">
                <div class="thumbnail">
                    <img src="img/1.JPG" >
                <button class="btn">
                    <span class="glyphicon glyphicon-heart">点赞</span>
                </button>
                <button class="btn">
                    <span class="glyphicon glyphicon-pencil">评论</span>
                </button>
                </div>        
            </div>
    
        </div>
    </div>


    <!-- 面板 -->
    <div class="panel panel-success">
        <div class="panel-heading">
            狗狗合集
        </div>
        <div class="panel=body">
            <div class="container">
                <div class="row">
                    <!-- 缩略图 -->
                    <div class="col-md-3">
                        <div class="thumbnail">
                            <img src="img/1.JPG" >
                        <button class="btn">
                            <span class="glyphicon glyphicon-heart">点赞</span>
                        </button>
                        <button class="btn">
                            <span class="glyphicon glyphicon-pencil">评论</span>
                        </button>
                        </div>
                    </div>
            
                    <div class="col-md-3">
                        <div class="thumbnail">
                            <img src="img/1.JPG" >
                        <button class="btn">
                            <span class="glyphicon glyphicon-heart">点赞</span>
                        </button>
                        <button class="btn">
                            <span class="glyphicon glyphicon-pencil">评论</span>
                        </button>
                        </div>        </div>
            
                    <div class="col-md-3">
                        <div class="thumbnail">
                            <img src="img/1.JPG" >
                        <button class="btn">
                            <span class="glyphicon glyphicon-heart">点赞</span>
                        </button>
                        <button class="btn">
                            <span class="glyphicon glyphicon-pencil">评论</span>
                        </button>
                        </div>        </div>
            
                    <div class="col-md-3">
                        <div class="thumbnail">
                            <img src="img/1.JPG" >
                        <button class="btn">
                            <span class="glyphicon glyphicon-heart">点赞</span>
                        </button>
                        <button class="btn">
                            <span class="glyphicon glyphicon-pencil">评论</span>
                        </button>
                        </div>        
                    </div>
            
                </div>
            </div>
        </div>
    </div>
</body>
</html>

07 导航

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
</head>
<body>

    <!-- 标签式导航 -->
    <ul class="nav nav-tabs">
        <li class="active"><a href="#">Home</a></li>
        <li><a href="#">SVN</a></li>
        <li><a href="#">IOS</a></li>
        <li><a href="#">VB.Net</a></li>
        <li><a href="#">Java</a></li>
        <li><a href="#">PHP</a></li>
    </ul>

    <!-- 胶囊式导航 -->
    <ul class="nav nav-pills">
        <li class="active"><a href="#">Home</a></li>
        <li><a href="#">SVN</a></li>
        <li><a href="#">IOS</a></li>
        <li><a href="#">VB.Net</a></li>
        <li><a href="#">Java</a></li>
        <li><a href="#">PHP</a></li>
    </ul>

    <!-- 面包屑式导航 -->
    <ul class="breadcrumb">
        <li class="active"><a href="#">Home</a></li>
        <li><a href="#">SVN</a></li>
        <li><a href="#">IOS</a></li>
        <li><a href="#">VB.Net</a></li>
        <li><a href="#">Java</a></li>
        <li><a href="#">PHP</a></li>
    </ul>


</body>
</html>

08 分页导航

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
</head>
<body>

    <!-- 分页导航 -->
    <ul class="pagination">
        <li><a href="#">&laquo;</a></li>
        <li class="active"><a href="#">1</a></li>
        <li><a href="#">2</a></li>
        <li><a href="#">3</a></li>
        <li><a href="#">4</a></li>
        <li><a href="#">&raquo;</a></li>
    </ul>

    <!-- 翻页导航 -->
    <ul class="pager">
        <li><a href="#">Previous</a></li>
        <li><a href="#">Next</a></li>
    </ul>

</body>
</html>

09 插件

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
    <script src="js/jquery-3.4.1.js"></script>
    <!-- bootstrap的核心js文件依赖jQuery的核心js文件 -->
    <script src="bootstrap/js//bootstrap.min.js"></script>
</head>

<body>
    <!-- 下拉菜单 -->
    <div class="dropdown">
        <!-- 下拉框按钮 -->
        <button class="btn btn-default dropdown-toggle" data-toggle="dropdown">
            喜欢的频道
            <!-- 设置下拉箭头 -->
            <span class="caret"></span>
        </button>
        <!-- 下拉菜单 -->
        <ul class="dropdown-menu">
            <li class="dropdown-header">科普</li>
            <li><a href="#">人与自然</a></li>

            <!-- 分割线 -->
            <li class="divider"></li>

            <li class="dropdown-header">搞笑</li>
            <li><a href="#">快乐大本营</a></li>
            <li><a href="#">欢乐喜剧人</a></li>
        </ul>
    </div>

    <!-- 模态框 -->
    <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">&times;</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>


    <button id="btn">打开模态框</button>
    <script>
        $("#btn").click(function(){
            $("#myModal").modal("show");
        })
    </script>
</body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值