当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。