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


jQuery Mobile Filterable filterPlaceholder用法及代码示例


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

在本文中,我们将学习 jQuery Mobile Filterable filterPlaceholder 选项。 filterPlaceholder 选项将占位符文本设置为搜索栏的提示。

用法: 这过滤器占位符选项需要一个string值并且可以已初始化如下:

$(".items").filterable({
    filterPlaceholder: "Search bar",
});
  • 获取filterPlaceholder选项

    var filterPlaceholderOpt = $(".items")
    .filterable("option", "filterPlaceholder");
  • 设置filterPlaceholder选项

  • $(".items").filterable("option", "filterPlaceholder", 
                             "Search items");

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>

示例:在这个例子中,我们设置了过滤器占位符文本至“搜索栏”。

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; text-align: center;"> 
        GeeksforGeeks 
    </h1> 
    <h3 style="text-align: center;"> 
      jQuery Mobile Filterable filterPlaceholder 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({ 
            filterPlaceholder: "Search bar", 
        }); 
    </script> 
</body> 
  
</html>

输出

jQuery Mobile Filterable filterPlaceholder Option

jQuery Mobile 可过滤的filterPlaceholder 选项

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



相关用法


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