Bootstrap 可消失警报类


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>

更新于: 12-6-2020

157次浏览

开启你的职业生涯

完成该课程获得认证

开始
广告