Computer >> Máy Tính >  >> Lập trình >> Javascript

Nhóm danh sách có thể thu gọn Bootstrap


Để tạo nhóm danh sách có thể thu gọn, hãy sử dụng thuộc tính bảng thu gọn với thuộc tính nhóm danh sách.

Ví dụ

Thuộc tính nhóm danh sách liệt kê các mục bằng thuộc tính danh sách-nhóm-mục -

<!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>Questions/ Answers</h2>
         <p>Click below to learn about the technologies for which we provide Interview Questions.</p>
         <div class = "panel-group">
            <div class = "panel panel-default">
               <div class = "panel-heading">
                  <h4 class = "panel-title">
                     <a data-toggle = "collapse" href = "#test">Info</a>
                  </h4>
               </div>
               <div id = "test" class="panel-collapse collapse">
                  <ul class = "list-group">
                     <li class = "list-group-item">Java</li>
                     <li class = "list-group-item">PHP</li>
                     <li class = "list-group-item">C++</li>
                     <li class =" list-group-item">HTML5</li>
                     <li class =" list-group-item">jQuery</li>
                  </ul>
               </div>
            </div>
         </div>
      </div>
   </body>
</html>