使用 Bootstrap 默认显示可折叠的内容


在 Bootstrap 中使用“折叠”类以默认显示可折叠的内容 −

示例

实时演示

<!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>More Quizzes</h2>
         <a href = "#test" class = "btn btn-info" data-toggle = "collapse">More</a>
         <div id = "test" class = "collapse in">
            We have quizzes on Java, PHP, Ruby, C, C++, etc. as well.
         </div>
      </div>
   </body>
</html>

更新于: 12-Jun-2020

232 次观看

开启你的 职业生涯

完成课程,取得认证

开始学习
广告
© . All rights reserved.