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


jQuery Mobile panel open()用法及代碼示例


jQuery 移動是一個JavaScript用於開發響應式網站和 Web 應用程序的庫。它構建在 jQuery 之上。在本文中,我們將使用 jQuery Mobile 麵板open()打開麵板的方法。麵板open()不接受任何參數。

用法:

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

Parameters: 此方法不接受任何參數。

CDN Links:

<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()方法。

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(){ 
            // Invoke the open method of panel 
            $("#divID").panel("open"); 
        } 
    </script> 
</head> 
  
<body> 
    <div data-role="page"> 
        <div data-role="header" > 
            <h1 style="color:green;">GeeksforGeeks</h1> 
            <h3>jQuery Mobile Panel open 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 open() Method

參考: https://api.jquerymobile.com/panel/#method-open



相關用法


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