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


jQuery Mobile Page closeBtn用法及代碼示例


jQuery 移動是一種基於網絡的技術,旨在製作可在所有智能手機、平板電腦和桌麵設備上訪問的響應式網站和應用程序。PageWidgetjQuery Mobile 中的 jQuery Mobile 負責維護 jQuery Mobile 框架中的單個項目。

在本文中,我們將學習 jQuery Mobile 頁麵 closeBtn 選項。 closeBtn 選項由對話框擴展提供便利,它提供了對話框頁麵的關閉按鈕以返回主頁。可以有 3 個不同的值:

  • left:該按鈕出現在標題欄的左邊。
  • right:該按鈕出現在標題欄的右邊。
  • none:對話框中不會出現關閉按鈕

用法: 這關閉按鈕選項需要一個stringvalue 並傳遞上述 3 個位置值之一作為參數。默認值為剩下.

初始化關閉按鈕選項:

$("#gfgDialog").page({ closeBtn: "right" });
  • 獲取關閉按鈕初始化後的選項

    var closeBtnOpt = $("#gfgDialog").page("option", "closeBtn");
  • 關閉按鈕選項 初始化後

    $("#gfgDialog").page("option", "closeBtn", "right");

CDN 鏈接:對 jQuery Mobile 項目使用以下 CDN 鏈接。

<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>

示例:在下麵的示例中,我們提供了關閉按鈕選項與正確的位置。因此,關閉按鈕出現在標題欄的右側。

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" id="gfgpage"> 
        <div data-role="header"> 
            <h1 style="color: green;"> 
                GeeksforGeeks 
            </h1>  
        </div> 
        <div data-role="main" class="ui-content"> 
            <h3> 
                jQuery Mobile Page closeBtn Option 
            </h3> 
            <center> 
                <a href="#gfgDialog" 
                   data-rel="dialog"> 
                    GeeksforGeeks dialog 
                </a>  
            </center> 
        </div> 
    </div> 
    <div data-role="page" id="gfgDialog"> 
        <div data-role="header"> 
            <h2>GeeksforGeeks</h2>  
        </div> 
        <div role="main" class="ui-content"> 
            <p>Programming Tutorials Website</p> 
            <ul> 
                <li>Data Structures</li> 
                <li>Algorithms</li> 
                <li>Web Development</li> 
            </ul> 
        </div> 
    </div> 
    <script> 
        $(document).ready(function() { 
            $("#gfgDialog").page({ 
                dialog: true, 
                closeBtn: "right" 
            }); 
        }); 
    </script> 
</body> 
  
</html>

輸出:

Page closeBtn

jQuery Mobile 頁麵 closeBtn 選項

參考:https://api.jquerymobile.com/page/#option-closeBtn



相關用法


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