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


jQuery Mobile panel close()用法及代码示例


jQuery 移动是一个用于创建可在各种屏幕尺寸的设备(例如手机、平板电脑、笔记本电脑和台式机)上访问的网站和 Web 应用程序的框架。在本文中,我们将使用 jQuery Mobile 控制板close()方法关闭已打开的面板。面板close()方法不接受任何参数。

用法:

$(".selector").panel( "close" ); 

Parameters: 此方法不接受任何参数。

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-2.1.3.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js”></script>

例子:下面的例子中,我们首先使用面板打开面板open()方法,然后我们调用面板close()方法3秒后关闭面板。

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="utf-8"> 
    <meta name="viewport" content= 
          "width=device-width, initial-scale=1"> 
  
    <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-2.1.3.js"> 
    </script> 
    <script src= 
 "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"> 
    </script> 
  
    <script> 
        function openPanel(){           
            $("#divID").panel("open"); 
  
            // Close the panel after 3 seconds 
            setTimeout(() => { 
                // The close() method 
                $("#divID").panel("close"); 
            }, 3000); 
        } 
    </script> 
</head> 
  
<body> 
    <div data-role="page"> 
        <div data-role="header" > 
            <h1 style="color:green;">GeeksforGeeks</h1> 
            <h3>jQuery Mobile Panel close() method</h3> 
        </div> 
  
        <div role="main" class="ui-content"> 
            <center> 
                <button onclick="openPanel();"
                        style="width:400px;"> 
                       Open Panel  
                </button> 
            </center> 
          </div>> 
  
        <div data-role="panel" id="divID"> 
            <h3>GeeksforGeeks</h3> 
            <p>This is a panel</p> 
        </div> 
    </div> 
</body> 
  
</html>

输出:

jQuery Mobile panel close() Method

参考:https://api.jquerymobile.com/panel/#method-close



相关用法


注:本文由纯净天空筛选整理自vpsop大神的英文原创作品 jQuery Mobile panel close() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。