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


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


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

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

用法:

1. 如果用户想要任何选项的值,则应将选项名称传递到选项(选项名称)方法.这选项名称应该是字符串类型。

var isEnhanced = $("Selector").filterable("option", "enhanced");

参数:

  • optionName: 该参数是我们需要以字符串形式传递的输入,我们需要获取其值。
  • Return type: 我们根据选项数据类型获取相应的返回值。

2. 要获取所有选项作为键值对,您只需调用option()方法,并且不向该方法传递任何参数。

var options= $("Selector").filterable("option");

参数:

  • Return type: 该方法返回所有选项的键值对列表:optionName-optionValue对集。

3. 要设置任何选项的值,您只需调用选项(选项名称,值)选项名称作为参数。

$("Selector").filterable("option", "enhanced", "false");

参数:

  • optionName: option方法需要选项名称作为第一个参数,该参数是字符串类型。
  • value: option方法需要选项的名称作为第二个参数,该参数是字符串类型。

4. 我们还可以设置多个选项,而不是只设置一个,只需调用 option(options) 方法,其中 options 是选项列表。

$("Selector").filterable("option", {enhanced: false, disabled: true});

参数:

  • option:它是optionName-value对的映射作为输入来设置与传递的值对应的选项,它是对象类型。
  • 返回值:该方法返回一个对象值。

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

<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>

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

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({}); 
  
            // Bind the click event for the button 
            $(".btnclass").bind("click", function () { 
                var options = $(".items").filterable("option"); 
                $("#gfg").html("<b>"  
                    + "No of key/value pair present : " 
                    + Object.keys(options).length + "<b>"); 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <div data-role="page" id="page1"> 
            <div> 
                <h1 style="color:green;"> 
                    GeeksforGeeks 
                </h1> 
                <h3> 
                    jQuery Mobile Filterable option() 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="Button" 
                class="btnclass" /> 
            <div id="gfg"></div> 
        </div> 
    </center> 
</body> 
  
</html>

输出:

jQuery Mobile Filterable option() Method

jQuery Mobile 可过滤option() 方法

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



相关用法


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