Bootstrap alert-dismissable 类


Bootstrap 中的 .alert-dismissable 类用于关闭提示。

您可以尝试运行以下代码,在 Bootstrap 中实现 alert-dismissable 类

示例

在线示例

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "alert alert-warning alert-dismissable">
         <button type = "button" class = "close" data-dismiss = "alert" aria-hidden = "true">
            ×
         </button>
         Warning ! Don’t submit this.
      </div>
      <div class = "alert alert-danger alert-dismissable">
         <button type = "button" class = "close" data-dismiss = "alert" aria-hidden = "true">
            ×
         </button>
         Error ! Change few things.
      </div>
   </body>
</html>

更新时间: 2020 年 6 月 12 日

157 次浏览

启动您的 职业生涯

通过完成课程来获得认证

开始学习
广告