當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery Mobile Listview countTheme用法及代碼示例


jQuery 移動是一個基於 HTML5 的用戶接口係統,旨在製作可在所有智能手機、平板電腦和桌麵設備上訪問的響應式網站和應用程序。 jQuery Listview 是一個用於創建漂亮列表的小部件。這是一個簡單且響應式的列表視圖,用於查看無序列表.

在本文中,我們將使用jQuery Mobile 列表視圖計數主題選項。countTheme 選項 主題列表項中計數氣泡的顏色。這數氣泡是通常在列表視圖項目的右端對齊的元素。

注意:要創建計數氣泡,請在類中包裝一個數字“ul-li-count”。

用法:使用以下語法來更改主題數氣泡使用計數主題選項。這需要一個單個字符a-z其中每個字符代表一種顏色。

首次初始化時,請使用以下語法。

$(".items").listview({
    countTheme:"b",
});
  • 獲取 countTheme 選項。

    var countThemeOption = 
        $(".items").listview( "option", "countTheme" );
  • 設置 countTheme 選項。

    $(".items").listview( "option", "countTheme", "b" );

CDN 鏈接:將以下 CDN 鏈接用於您的 jQuery Mobile 項目。

<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.1.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

示例: 我們已經設置為黑暗主題計數主題通過使用角色“b”.

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <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.1.min.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> 
    </script> 
</head> 
  
<body> 
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
    <h3>jQuery Mobile Listview countTheme Option</h3> 
    <ul class="items"> 
        <li> 
            <a href= 
"https://www.geeksforgeeks.org/data-structures"
               target="_blank"> 
                Data Structures 
                <span class="ui-li-count">67</span> 
            </a> 
        </li> 
        <li> 
          <a href= 
"https://www.geeksforgeeks.org/courses/complete-interview-preparation" 
                target="_blank"> 
                Interview preparation 
                <span class="ui-li-count">22</span> 
            </a> 
        </li> 
        <li> 
            <a href= 
"https://www.geeksforgeeks.org/java" target="_blank"> 
                Java Programming 
                <span class="ui-li-count">102</span> 
            </a> 
        </li> 
    </ul> 
    <script> 
        $(".items").listview({ 
            countTheme: "b", 
        }); 
    </script> 
</body> 
  
</html>

輸出:

jQuery Mobile Listview countTheme Option

參考: https://api.jquerymobile.com/listview/#option-countTheme



相關用法


注:本文由純淨天空篩選整理自manavsarkar07大神的英文原創作品 jQuery Mobile Listview countTheme Option。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。