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 次瀏覽

啟動您的 職業生涯

透過完成課程來獲得認證

開始學習
廣告
© . All rights reserved.