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


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