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


jQuery Mobile Filterable filterTheme用法及代码示例


jQuery 移动是一个基于 HTML5 的用户接口系统,旨在制作可在所有智能手机、平板电脑和桌面设备上访问的响应式网站和应用程序。可过滤是一个可以过滤任何元素的子元素的小部件。表单、列表等可以在可过滤的帮助下进行过滤。搜索栏出现在列表顶部,其中写入了搜索文本。

在本教程中,我们将学习 jQuery Mobile Filterable filterTheme 选项。 filterTheme 选项设置搜索占位符面板的颜色样本。

用法: 过滤主题选项需要一个单个字符a-z其中每个字符描绘一种颜色。

$(".items").filterable({
    filterTheme: "a",
});

CDN 链接:对 jQuery Mobile 项目使用以下 CDN 链接。

<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 Filterable filterTheme Option</h3> 
    <ul class="items"> 
        <li> 
            <a href= 
"https://www.geeksforgeeks.org/data-structures" 
               target="_blank"> 
                Data Structures 
            </a> 
        </li> 
        <li> 
            <a href= 
"https://www.geeksforgeeks.org/courses/complete-interview-preparation" 
               target="_blank"> 
                Interview preparation 
            </a> 
        </li> 
        <li> 
            <a href= 
"https://www.geeksforgeeks.org/java"
               target="_blank"> 
                Java Programming 
            </a> 
        </li> 
    </ul> 
    <script> 
        $(".items").filterable({ 
            filterTheme: "b", 
        }); 
    </script> 
</body> 
  
</html>

输出:

jQuery Mobile Filterable filterTheme Option

参考:https://api.jquerymobile.com/filterable/#option-filterTheme



相关用法


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