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


jQuery UI Sortable toArray()用法及代码示例


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

在本文中,我们将使用 jQuery UI Sortable toArray() 方法将可排序项目 id 序列化为字符串数组。

用法:

$(".selector").sortable("toArray" );

参数:该方法接受单个参数options自定义序列化。它包含默认值 “id” 的字符串类型属性,该属性保存用于值的属性名称。

返回值:此方法按排序顺序返回可排序元素的 id 值数组。

CDN 链接:首先,添加项目所需的 jQuery Mobile 脚本。

<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>
<link rel=”stylesheet” href=”https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css”>

例子:下面的例子说明了使用jQuery UI 可排序toArray()方法。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <meta charset="utf-8"> 
    <link rel="stylesheet" href= 
"https://code.jquery.com/ui/1.12.1/themes/base/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> 
  
    <title>jQuery UI Sortable toArray() Method</title> 
  
    <style> 
        #sortableList { 
            list-style-type: none; 
        } 
  
        .geeks { 
            margin: 10px; 
            background: lightgreen; 
            padding: 10px; 
            border: 1px solid green; 
            font-size: 25px; 
        } 
    </style> 
    <script> 
        $(function () { 
            $('#sortableList').sortable({ 
                update: function (event, ui) { 
                    var benefits = $(this) 
                        .sortable('toArray').toString(); 
                          
                    $("#sortedList").text(benefits); 
                } 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color: green;"> 
            GeeksforGeeks 
        </h1> 
        <h4>jQuery UI Sortable toArray() Method</h4> 
  
        <ul id="sortableList"> 
            <li id="Tutorials" class="geeks"> 
                1.Free Tutorials 
            </li> 
            <li id="Articles" class="geeks"> 
                2.Millions of articles 
            </li> 
            <li id="Webinars" class="geeks"> 
                3.Webinars by Industry Experts 
            </li> 
            <li id="Courses" class="geeks"> 
                4.Live, Online and Classroom Courses 
            </li> 
        </ul> 
  
        <h3>Benefits ID after sorting</h3> 
        <h2><span id='sortedList'></span></h2> 
    </center> 
</body>

输出:

参考: https://api.jqueryui.com/sortable/#method-toArray



相关用法


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