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


JQuery Mobile Listview countTheme用法及代码示例


用法:

countTheme
类型:String
默认:null, inherited from parent
此选项在 1.4.0 中已弃用,并将在 1.5.0 中删除。

设置列表项计数气泡的配色方案(样本)。它接受来自a-z 的单个字母,该字母映射到您的主题中包含的样本。

可能的值:样本字母 (a-z)。

此选项也作为数据属性公开:data-count-theme="b"

(不推荐使用的版本:1.4.0)

代码示例:

使用指定的 countTheme 选项初始化列表视图:

$( ".selector" ).listview({
  countTheme: "b"
});

初始化后获取或设置countTheme选项:

// Getter
var countTheme = $( ".selector" ).listview( "option", "countTheme" );
 
// Setter
$( ".selector" ).listview( "option", "countTheme", "b" );

相关用法


注:本文由纯净天空筛选整理自jquerymobile.com大神的英文原创作品 Listview countTheme。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。