Bootstrap 可摺疊元素處於


Bootstrap 類的 collapsible 元素用於展示可摺疊內容。

你可以嘗試執行以下程式碼在類中實現 collapsible 元素−

示例

即時演示

<!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 = "container">
         <h2>Quiz</h2>
         <p>Click below to toggle the button content.</p>
         <button type = "button" class = "btn btn-info" data-toggle = "collapse" data-target = "#test">More Quizzes</button>
         <div id = "test" class = "collapse in">
            We have quizzes on Java, PHP, Ruby, Quantitative Aptitude, ASP.net, etc.
         </div>
      </div>
   </body>
</html>

更新於:2020 年 6 月 15 日

199 次瀏覽

開啟你的職業生涯

完成課程,獲得證書

開始
廣告
© . All rights reserved.