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


jQuery Mobile Listview filterReveal用法及代碼示例


jQuery Mobile 是一組基於 HTML5 的用戶交互小部件工具箱,用於構建在 jQuery 之上的各種用途。它旨在構建可通過移動設備、選項卡和桌麵訪問的快速響應的網站。 jQuery Listview 是一個用於創建漂亮列表的小部件。它是一個簡單且響應式的列表視圖,用於查看 unordered lists

在本文中,我們將使用 jQuery Mobile Listview篩選顯示選項。這篩選顯示 選項用於隱藏或顯示搜索結果列表篩選列表視圖的選項。如果 真的,列表隱藏 當搜索文本為空時否則 它顯示了完整的項目列表。它還改變了data-filter-reveal 作為 真的對於無序列表。

用法: 我們需要通過真的 或者錯誤的 作為參數篩選顯示。使用以下語法進行初始化。

$(".items").listview({
    filterReveal:true,
});
  • 獲取篩選顯示選項:

    var filterRevealOption = 
        $(".items").listview( "option", "filterReveal" );
  • 設置篩選顯示選項:

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

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>

示例:在下麵的示例中,我們設置選項篩選顯示 真的.

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 Listview filterReveal Option</h3> 
    <ul class="items" data-filter-reveal="true"> 
        <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").listview({ 
        filter: true, 
        filterReveal: true, 
    }); 
    </script> 
</body> 
  
</html>

輸出:

jQuery Mobile Listview filterReveal Option

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



相關用法


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