源代码 :
点击运行
<!DOCTYPE html> <html> <head> <title>Bootstrap 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css"> <script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script> <script src="https://cdn.staticfile.org/popper.js/1.15.0/umd/popper.min.js"></script> <script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>提示框</h2> <p>提示框可以使用 .alert 类, 后面加上指定特定意义的颜色类来实现:</p> <div class="alert alert-success"> <strong>成功!</strong> 指定操作成功提示信息。 </div> <div class="alert alert-info"> <strong>信息!</strong> 请注意这个信息。 </div> <div class="alert alert-warning"> <strong>警告!</strong> 设置警告信息。 </div> <div class="alert alert-danger"> <strong>错误!</strong> 失败的操作 </div> <div class="alert alert-primary"> <strong>首选!</strong> 这是一个重要的操作信息。 </div> <div class="alert alert-secondary"> <strong>次要的!</strong> 显示一些不重要的信息。 </div> <div class="alert alert-dark"> <strong>深灰色!</strong> 深灰色提示框。 </div> <div class="alert alert-light"> <strong>浅灰色!</strong>浅灰色提示框。 </div> </div> </body> </html>
运行结果