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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。