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


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


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

在本文中,我们将使用 jQuery Mobile Filterable destroy() 方法从小部件中完全删除可过滤函数。此方法将元素返回到其预初始化状态,并且也不接受任何参数。

句法:

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

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 可过滤destroy()方法。

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("destroy"); 
            }); 
        }); 
    </script> 
  
</head> 
  
<body> 
 <center> 
        <div data-role="page" id="page1"> 
            <div> 
                <h1 style="color:green;">GeeksforGeeks</h1> 
                <h3> 
                    jQuery Mobile Filterable destroy() 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="Destroy" class="btnclass" /> 
              
            <div id="divID"></div> 
        </div> 
    </center> 
</body> 
</html> 

输出:

jQuery Mobile Filterable destroy() Method

jQuery Mobile 可过滤destroy() 方法

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



相关用法


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