列表檢視可摺疊縮排專案



描述

在縮排列表的樹形結構中,最外層類透過新增類 ui-listview-outer進行標識。

示例

以下示例展示如何在 jQuery Mobile 中使用列表檢視可摺疊縮排專案。

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>
   
   <body>
      <h2>Regular Indent listview</h2>
      <ul data-role = "listview" class = "ui-listview-outer">
         <li data-role = "collapsible" data-iconpos = "right">
            <h2>Choose Your State</h2>
            <fieldset data-role = "controlgroup" data-type = "horizontal">
               <label>Karnataka<input type = "checkbox"></label>
               <label>Maharastra<input type = "checkbox"></label>
               <label>Tamil Nadu<input type = "checkbox"></label>
            </fieldset>
         </li>
         
         <li data-role = "collapsible" data-iconpos = "right">
            <h2>Tamil Nadu</h2>
            <ul data-role = "listview" data-theme = "b" data-inset = "true">
               <li><a href = "#">Chennai</a></li>
               <li><a href = "#">Coimbator</a></li>
               <li><a href = "#">Madurai</a></li>
               <li><a href = "#">Vellore</a></li>
               <li><a href = "#">Ooty</a></li>
            </ul>
         </li>

         <li data-role = "collapsible" data-iconpos = "right">
            <h2>Karnataka</h2>
            <ul data-role = "listview" data-theme = "b" data-inset = "true">
               <li><a href = "#">Bangalore</a></li>
               <li><a href = "#">Belgaum</a></li>
               <li><a href = "#">Hubli</a></li>
               <li><a href = "#">Mangalore</a></li>
               <li><a href = "#">Dharwad</a></li>
            </ul>
         </li>
         
         <li>
            <a href = "#"><h2>Maharastra</h2></a>
         </li>
      </ul>

      <h2>Inset Indent listview</h2>
      <ul data-role = "listview" data-inset = "true" class = "ui-listview-outer">
         <li data-role = "collapsible" data-iconpos = "right" data-inset = "true">
            <h2>Choose Your State</h2>
            <fieldset data-role = "controlgroup" data-type = "horizontal">
               <label>Karnataka<input type = "checkbox"></label>
               <label>Maharastra<input type = "checkbox"></label>
               <label>Tamil Nadu<input type = "checkbox"></label>
            </fieldset>
         </li>
         
         <li data-role = "collapsible" data-iconpos = "right">
            <h2>Tamil Nadu</h2>
            <ul data-role = "listview" data-inset = "true">
               <li><a href = "#">Chennai</a></li>
               <li><a href = "#">Coimbator</a></li>
               <li><a href = "#">Madurai</a></li>
               <li><a href = "#">Vellore</a></li>
               <li><a href = "#">Ooty</a></li>
            </ul>
         </li>
         
         <li data-role = "collapsible" data-iconpos = "right">
            <h2>Karnataka</h2>
            <ul data-role = "listview"  data-inset = "true">
               <li><a href = "#">Bangalore</a></li>
               <li><a href = "#">Belgaum</a></li>
               <li><a href = "#">Hubli</a></li>
               <li><a href = "#">Mangalore</a></li>
               <li><a href = "#">Dharwad</a></li>
            </ul>
         </li>
         
         <li>
            <a href = "#"><h2>Maharastra</h2></a>
         </li>
      </ul>
   </body>
</html>

輸出

讓我們執行以下步驟,瞭解以上程式碼如何運作 −

  • 將以上 html 程式碼儲存為伺服器根資料夾中的 listview_collapsible_item_indented.html 檔案。

  • 開啟此 HTML 檔案,網址為 https:///listview_collapsible_item_indented.html,將顯示以下輸出。

jquery_mobile_widgets.htm
廣告
© . All rights reserved.