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

開啟你的職業生涯

完成該課程獲得認證

開始
廣告
© . All rights reserved.