當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery Mobile Filterable filterReveal用法及代碼示例


jQuery Mobile 是一種基於 HTML5 的用戶接口係統,旨在製作可在所有智能手機、平板電腦和桌麵設備上訪問的響應式網站和應用程序。 Filterable 是一個可以過濾任何元素的子元素的小部件。表單、列表等可以在可過濾的幫助下進行過濾。搜索欄出現在列表頂部,其中寫入了搜索文本。

在本文中,我們將學習 jQuery Mobile Filterable filterReveal 選項。 filterReveal 選項設置在搜索文本為空時項目是否可見。如果為 true,則當搜索為空時,這些項目將不可見,反之亦然。默認值設置為 false。

用法: 這篩選顯示選項需要一個布爾值值並且是已初始化如下:

$(".items").filterable({
    filterReveal: true,
});
  • 獲取filterReveal選項

    var filterRevealOpt = $(".items")
    .filterable("option", "filterReveal");
  • 設置過濾器顯示選項

    $(".items").filterable("option", "filterReveal", "true");

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 filterReveal 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({ 
        filterReveal: true, 
    }); 
    </script> 
</body> 
  
</html>

輸出

jQuery Mobile Filterable filterReveal Option

jQuery Mobile 可過濾過濾器顯示選項

參考:https://api.jquerymobile.com/filterable/#option-filterReveal



相關用法


注:本文由純淨天空篩選整理自manavsarkar07大神的英文原創作品 jQuery Mobile Filterable filterReveal Option。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。