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


jQuery UI Sortable create用法及代码示例


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

jQuery UI Sortable create 事件用于在连接的可排序列表中的项目被放入另一个列表时触发。

用法:我们需要使用创建回调函数来初始化可排序小部件:

$( ".selector" ).sortable({
    create : function( event, ui ) {}
});
  • 将事件侦听器绑定到排序创建事件:

    $( ".selector" ).on( "sortcreate", function( event, ui ) {} );

参数:以下是可接受的参数。

  • event: 当排序创建项目时会触发此事件。
  • ui: 该参数是带有below-given选项的对象类型。
  • helper: 该参数是代表排序助手的 jQuery 对象。
  • item: 该参数是代表当前拖动项的 jQuery 对象。
  • offset: 该参数是辅助对象的当前绝对位置,表示为{top, left}。
  • position: 该参数是辅助对象的当前位置,表示为 { top, left }。

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 可排序创建事件。

HTML


<!DOCTYPE html> 
<html lang="en"> 
    
<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> 
    
    <style> 
        #sortable-1, #sortable-2 {  
            list-style-type: none;  
            width: 150px;  
            } 
        #sortable-1 li, #sortable-2 li {  
            padding: 0.4em;  
            font-size: 17px;  
            height: 16px;  
            color: black; 
            background-color: green; 
        } 
    
    </style> 
    
    <script> 
        $(function() { 
            $( "#sortable-1" ).sortable({ 
                   create : function (event, ui) { 
                    $(".res").html ($(".res").html ()  
                     + "<b>Sortable Widget  has been created.</b><br>"); 
                   } 
            }); 
            $( "#sortable-2" ).sortable({ 
                   connectWith : "#sortable-1, #sortable-2" 
            }); 
        }); 
    </script> 
    
</head> 
    
<body> 
    <center> 
        <h1 style="color: green;"> 
            GeeksforGeeks 
        </h1> 
    
        <h4>jQuery UI Sortable create Event</h4> 
    
        <hr /> 
        <div class = "list_data"> 
            <div class = "list_data1">  
                <h3>Name</h3> 
                <ul id = "sortable-1"> 
                    <li class = "ui-state-default">GFG1</li> 
                    <li class = "ui-state-default">GFG2</li> 
                    <li class = "ui-state-default">GFG3</li> 
                </ul> 
            </div> 
            <div class = "list_data1"> 
                <h3>Mark</h3>  
                <ul id = "sortable-2"> 
                    <li class = "ui-state-default">90</li> 
                    <li class = "ui-state-default">80</li> 
                    <li class = "ui-state-default">70</li> 
                </ul> 
            </div> 
        </div> 
            
        <hr /> 
        <div class="res"></div> 
    </center> 
</body> 
    
</html>

输出:

jQuery UI Sortable create Event

jQuery UI 可排序创建事件

参考:https://api.jqueryui.com/sortable/#event-create



相关用法


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