当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。