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


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


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

在本文中,我们将使用 jQuery Mobile Filterable disable() 方法来禁用可过滤函数。它不接受任何参数。

用法:

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

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

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

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

输出:

jQuery Mobile Filterable disable() Method

jQuery Mobile 可过滤disable() 方法

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



相关用法


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