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


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