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


jQuery Mobile panel disable用法及代碼示例


jQuery 移動是一個基於 HTML5 的用戶接口係統,旨在製作可在所有智能手機、平板電腦和桌麵設備上訪問的響應式網站和應用程序。麵板是用於創建列、抽屜、可折疊菜單等的小部件。它們是非常靈活的小部件,可用於多種目的。

在本文中,我們將學習 jQuery Mobile 麵板禁用選項。禁用選項禁用或啟用麵板。

用法:禁用選項采用布爾值,語法如下。如果為 true,我們可以禁用該麵板,反之亦然。

$("#gfgpanel").panel({

   disabled: false

});
  • 獲取禁用選項。

    var disabled = $( ".selector" ).panel( "option", "disabled" );  
  • 設置禁用選項

    $( ".selector" ).panel( "option", "disabled", false );

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>

例子:在下麵的示例中,我們有兩個麵板,一個麵板的禁用設置為 false,另一個麵板設置為 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> 
    <div data-role="page"> 
        <div data-role="header"> 
            <h1 style="color:green;">GeeksforGeeks</h1> 
        </div> 
        <div data-role="main" class="ui-content"> 
            <h4>jQuery Mobile Panel disabled Option</h4> 
            <a href="#gfgpanel1" data-role="button"> 
            Open Panel 1</a> 
            <a href="#gfgpanel2" data-role="button"> 
            Open Panel 2</a> 
        </div> 
        <div data-role="panel" id="gfgpanel1"> 
            <div class="panel-content"></div> 
            <h2>Welcome to GeeksforGeeks</h2> 
            <p>Panel disabled option is false</p> 
  
  
            <a href="#" data-rel="close" data-role="button"> 
            Close panel 
            </a> 
        </div> 
        <div data-role="panel" id="gfgpanel2" data-position="right"> 
            <div class="panel-content"></div> 
            <h2>Welcome to GeeksforGeeks</h2> 
            <p>Panel disabled option is true</p> 
  
  
            <a href="#" data-rel="close" data-role="button"> 
            Close panel 
            </a> 
        </div> 
    </div> 
    <script> 
        $(document).ready(function() { 
            $("#gfgpanel1").panel({ 
                disabled: false 
            }); 
            $("#gfgpanel2").panel({ 
                disabled: true 
            }); 
        }); 
    </script> 
</body> 
</html> 

輸出:

jQuery Mobile panel disable Option

jQuery Mobile 麵板禁用選項

參考:https://api.jquerymobile.com/panel/#option-disabled



相關用法


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