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


jQuery Mobile Filterable refresh()用法及代码示例


jQuery UI 是一种基于 Web 的技术,由各种 GUI 小部件、视觉效果和主题组成。这些函数可以使用 jQuery JavaScript 库来实现。 jQuery UI 是构建网页 UI 接口的最佳工具。它还可用于构建高度交互的 Web 应用程序,或者可用于轻松添加小部件。

在本文中,我们将使用 jQuery Mobile Filterable refresh() 方法来刷新可过滤项目。它会触发所有可排序项目的重新加载,并允许识别新项目。

用法:

$( ".selector" ).filterable( "refresh" );

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

Return type: 该方法不返回任何对象值。

CDN 链接:以下是您的项目所需的一些 jQuery Mobile 脚本,因此请将它们添加到您的项目中。

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

例子:这个例子说明了使用jQuery Mobile 可过滤refresh() 方法.

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= 
"http://code.jquery.com/jquery-1.11.0.min.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> 
    </script> 
          
    <script> 
        $(document).ready(function () { 
          
            $(".items").filterable({}); 
            $(".btnclass").bind("click", function () { 
                $(".items").filterable("refresh"); 
                alert("Widget Refreshed"); 
            }); 
        }); 
    </script> 
  
</head> 
  
<body> 
 <center> 
        <div data-role="page" id="page1"> 
            <div> 
                <h1 style = "color:green;">GeeksforGeeks</h1> 
                <h3> 
                    jQuery Mobile Filterable refresh() Method 
                </h3> 
            </div> 
        
            <div role="main" class="ui-content"> 
                <div > 
                    <ul class="items" style="list-style-type:none;"> 
                        <li> 
                            <a href= 
"https://www.geeksforgeeks.org/data-structures"
                            target="_blank"> 
                                Data Structures 
                            </a> 
                        </li> 
                        <li> 
                            <a href= 
"https://www.geeksforgeeks.org/courses/complete-interview-preparation"
                            target="_blank"> 
                                Interview preparation 
                            </a> 
                        </li> 
                        <li> 
                            <a href= 
"https://www.geeksforgeeks.org/java"
                            target="_blank"> 
                                Java Programming 
                            </a> 
                        </li> 
                    </ul> 
                </div> 
            </div> 
        
            <input type="button" Value="Refresh" class="btnclass" /> 
              
            <div id="gfg"></div> 
        </div> 
    </center> 
</body> 
  
</html> 

输出:

jQuery Mobile Filterable refresh() Method

jQuery Mobile 可过滤refresh() 方法

参考:https://api.jquerymobile.com/filterable/#method-refresh



相关用法


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