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


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


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

在本文中,我们将学习 jQuery UI Sortable serialize() 方法来生成哈希值,该哈希值可以附加到任何 URL,以便轻松地将新商品订单提交回服务器。它将可排序的项目 ID 序列化为表单/ajax 可提交字符串。此方法使用 ID 作为默认属性,例如,如果每个项目的 ID 为“geeks_value”,则将生成的哈希为“geeks[]=value & geeks[]=value”。

注意:如果 ID 属性不包含下划线,则序列化方法将返回空字符串。

用法:

调用serialize()方法:

$( "Selector" ).sortable( "serialize");

参数:该方法接受选项作为有助于自定义序列化的参数。它是一个对象类型。它包含3个值:

  • key: 它将part[]替换为指定值。它是字符串类型。
  • attribute:用于值 & 的属性名称是字符串类型。
  • expression:正则表达式用于将属性值拆分为键值部分,且类型为RegExp。

返回类型:它返回 String 类型的哈希值。

CDN 链接:添加项目所需的 jQuery Mobile 脚本:

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

例子:下面的例子说明了 jQuery UI Sortable 的实现serialize()方法。

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 serialize 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 hash = $(this).sortable('serialize'); 
                    $("#sortedList").text(hash); 
                } 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color: green;"> 
            GeeksforGeeks 
        </h1> 
          
        <h2>jQuery UI Sortable serialize method</h2> 
          
        <ul id="sortableList"> 
            <li id="Tutorials_One" class="geeks"> 
                1.Free Tutorials  
            </li> 
            <li id="Articles_Two" class="geeks"> 
                2.Millions of articles  
            </li> 
            <li id="Webinars_Three" class="geeks"> 
                3.Webinars by Industry Experts  
            </li> 
            <li id="Courses_Four" class="geeks"> 
                4.Live, Online and Classroom Courses  
            </li> 
        </ul> 
          
        <h2>Hash produces by serialize method is </h2> 
          
        <h2> 
            <span id='sortedList'></span> 
        </h2>  
    </center> 
</body> 
</html>

输出:

jQuery UI Sortable serialize() Method

jQuery UI 可排序 serialize() 方法

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



相关用法


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