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


jQuery Mobile Controlgroup container()用法及代码示例


jQuery 移动是一种基于网络的技术,用于制作可在所有智能手机、平板电脑和台式机上访问的响应式内容。在本文中,我们将了解 jQuery Mobile Controlgroupcontainer()方法。该方法用于获取容器元素,其中的子元素控制组是要放置的。

用法:

$( ".selector" ).controlgroup( "container" );

参数:该方法不接受任何参数。

返回值:该方法不返回任何值。

CDN 链接:首先,添加项目所需的 jQuery Mobile 脚本。

<link rel=”stylesheet” href=”//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css”>
<script src=”//code.jquery.com/jquery-1.10.2.min.js”></script>
<script src=”//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

例子:此示例说明了 jQuery Mobile 控制组container()方法。

HTML


<!doctype html> 
<html lang="en"> 
  
<head> 
    <link rel="stylesheet" href= 
"//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> 
    <script src= 
"//code.jquery.com/jquery-1.10.2.min.js"> 
    </script> 
    <script src= 
"//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> 
    </script> 
  
    <script> 
        $(document).ready(function () { 
            $("#GFG").controlgroup({ 
                defaults: true 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <div data-role="page" id="page1"> 
            <h1 style="color:green;"> 
                GeeksforGeeks 
            </h1> 
            <h3>jQuery Mobile Controlgroup  
                container() Method</h3> 
            <div role="main" class="ui-content"> 
                <div data-role="controlgroup" 
                     id="GFG"> 
                    <a href= 
"https://www.geeksforgeeks.org/data-structures/" 
                       class="ui-btn"> 
                        Data Structure 
                    </a> 
                    <a href= 
"https://www.geeksforgeeks.org/fundamentals-of-algorithms/" 
                       class="ui-btn"> 
                        Algorithm 
                    </a> 
                    <a href= 
"https://www.geeksforgeeks.org/web-development/" 
                       class="ui-btn"> 
                        Web Development 
                    </a> 
                    <a href= 
"https://www.geeksforgeeks.org/java/" 
                       class="ui-btn"> 
                        Java Programming 
                    </a> 
                </div> 
            </div> 
        </div> 
    </center> 
    <script> 
        $(document).ready(function () { 
            $("#page1").controlgroup("container"); 
        }); 
    </script> 
</body> 
  
</html>

输出:

jQuery Mobile 控制组 container() 方法

参考:https://api.jquerymobile.com/1.4/controlgroup/#method-container



相关用法


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