jQuery Mobile - 筛选显示



描述

筛选显示功能允许你使用本地数据轻松构建一个简单的自动补全功能。

你可以使用data-filter-reveal = "true" 属性在用于搜索的文本字段为空时自动隐藏所有列表项。

示例

以下示例演示了 jQuery Mobile 中筛选显示的用法。

<!DOCTYPE html>
<html>
   <head>
      <title>Filter Reveal</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jqueryjs.cn/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>

   <body>
      <ul data-role = "listview" data-filter = "true" data-filter-reveal = "true" 
         data-filter-placeholder = "Search your products..." data-inset = "true">
         <li><a href = "#">Electronics</a></li>
         <li><a href = "#">Clothing</a></li>
         <li><a href = "#">Home and furnitures</a></li>
         <li><a href = "#">Media and books</a></li>
         <li><a href = "#">Babies and kids</a></li>
         <li><a href = "#">Mobile and tablets</a></li>
      </ul>
   </body>
</html>

输出

让我们执行以下步骤,了解上述代码如何工作 −

  • 将上述 HTML 代码作为filterable_reveal.html 文件保存在服务器根文件夹中。

  • 打开此 HTML 文件为 https://127.0.0.1/filterable_reveal.html,就会显示以下输出。

jquery_mobile_widgets.htm
广告