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


jQuery Mobile Listview disabled用法及代碼示例


jQuery Mobile 是一種基於 HTML5 的用戶接口係統,旨在製作可在所有智能手機、平板電腦和桌麵設備上訪問的響應式網站和應用程序。 jQuery Listview 是一個用於創建漂亮列表的小部件。它是一個簡單且響應式的列表視圖,用於查看無序列表。

在這篇文章中,我們將學習禁用選項jQuery Mobile 的列表視圖。這個選項關掉一切職能如果其值設置為 true,則可以對 Listview 進行過濾等操作。我們無法執行列表視圖項目的搜索。它是布爾類型,默認值為 false。

用法:語法為禁用Listview的選項如下:

$(".items").listview({
    disabled: 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>

示例:在下麵的例子中,我們有禁用 過濾選項列表視圖的即使它變成 true 。

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8" /> 
    <meta http-equiv="X-UA-Compatible" 
          content="IE=edge" /> 
    <meta name="viewport" 
          content="width=device-width,  
                   initial-scale=1.0" /> 
    <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>GeeksforGeeks</h1> 
    <h3>jQuery Mobile Listview disabled option</h3> 
    <ul class="items" 
        data-role="listview" 
        data-disabled="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, 
        disabled: true, 
    }); 
    </script> 
</body> 
  
</html>

輸出

參考:Listview禁用選項的官方文檔如下:

https://api.jquerymobile.com/listview/#option-disabled



相關用法


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