- jQuery Mobile 教程
- jQuery Mobile - 主頁
- jQuery Mobile - 概覽
- jQuery Mobile - 設定
- jQuery Mobile - 頁面
- jQuery Mobile - 圖示
- jQuery Mobile - 轉換
- jQuery Mobile - 佈局
- jQuery Mobile - 小部件
- jQuery Mobile - 事件
- jQuery Mobile - 表單
- jQuery Mobile - 主題
- jQuery Mobile - CSS 類
- jQuery Mobile - 資料屬性
- jQuery Mobile 的有用的資源
- jQuery Mobile - 面試問題
- jQuery Mobile - 快速指南
- jQuery Mobile - 有用的資源
- jQuery Mobile - 討論
jQuery Mobile - 可摺疊列表檢視項扁平化
描述
可摺疊項是用來顯示簡短內容的基本且易用的小控制元件。透過自定義 CSS,可以建立可摺疊列表項來摺疊邊框和內邊距。
示例
以下示例展示了 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 listview</h2>
<ul data-role = "listview">
<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" data-inset = "false">
<h2>Tamil Nadu</h2>
<ul data-role = "listview" data-theme = "b">
<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" data-inset = "false">
<h2>Karnataka</h2>
<ul data-role = "listview" data-theme = "b">
<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 listview</h2>
<ul data-role = "listview" data-inset = "true" data-shadow = "false">
<li data-role = "collapsible" data-iconpos = "right" data-inset = "false">
<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" data-inset = "false">
<h2>Tamil Nadu</h2>
<ul data-role = "listview">
<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" data-inset = "false">
<h2>Karnataka</h2>
<ul data-role = "listview">
<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_list_items.html 檔案,並將其儲存到伺服器根資料夾中。
開啟此 HTML 檔案,網址為 https:///listview_collapsible_list_items.html,將會顯示以下輸出。
jquery_mobile_widgets.htm
廣告