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


jQuery UI Selectable widget()用法及代码示例


jQuery UI 由使用 jQuery、JavaScript 库实现的 GUI 小部件、视觉效果和主题组成。

jQuery UI 非常适合为网页构建 UI 接口。它可用于构建高度交互的 Web 应用程序,也可用于轻松添加小部件。

在本文中,我们将使用 jQuery Mobile Selectable widget() 方法返回一个包含可选元素的 jQuery 对象。它不接受任何函数参数。

用法:

var widget = $( ".selector" ).selectable( "widget" );

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

CDN 链接:您的项目将需要以下 jQuery Mobile 脚本,因此我们需要将这些脚本添加到您的项目中。

 <link rel=”stylesheet” href=”https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”https://code.jquery.com/jquery-1.12.4.js”></script>
<script src=”https://code.jquery.com/ui/1.12.1/jquery-ui.js”></script>

例:这个例子描述了 jQuery Mobile Selectable widget() 方法的使用。

HTML


<!doctype html>
<html lang="en">
  
<head>
    <link rel="stylesheet" href=
"https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
    <script src=
"https://code.jquery.com/jquery-1.12.4.js">
    </script>
    <script src=
"https://code.jquery.com/ui/1.12.1/jquery-ui.js">
    </script>
    <style>
        h1 {
            color:green;
        }
  
        #list .ui-selecting {
            background:greenyellow;
        }
  
        #list .ui-selected {
            color:white;
            background:green;
        }
    </style>
  
    <script>
        $(function () {
            $("#btn").on('click', function () {
                var widget = $("#divID").selectable( "widget" );
                document.getElementById('gfg').innerHTML += 
                "No of jQuery object containing the selectable element:" 
                  + Object.keys(widget).length;
                console.log(widget);
            });
        });
  
        $(document).ready(function () {
            $("#list").selectable();
        });
    </script>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h3>jQuery UI Selectable widget() Method</h3>
    <h3>GeeksforGeeks Subjects</h3>
    <ul id="list">
        <li>Data Structure</li>
        <li>Algorithm</li>
        <li>C++</li>
        <li>Java</li>
        <li>HTML</li>
    </ul>
  
    <input type="button" id="btn"
        value="Widget">
    <h4><span id="gfg"></span></h4>
</body>
  
</html>

输出:

jQuery UI Selectable widget() Method

参考: https://api.jqueryui.com/selectable/#method-widget


相关用法


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