Home Web Front-end JS Tutorial Analysis of drag and drop sorting example in jqueryUI_jquery

Analysis of drag and drop sorting example in jqueryUI_jquery

May 16, 2016 pm 04:13 PM
Drag and drop sort

Example referencehttp://jsfiddle.net/KyleMit/Geupm/2/ (This site requires FQ to see the effect)

In fact, it is an enhanced version of the jqueryUI official shopping cart drag and drop example, which adds sorting when dragging

This is html code

Copy code The code is as follows:


Products



T-Shirts



                                                                                                                        
  • Lolcat Shirt

  •                                                                                                                                                                                                     
  • Buckit Shirt

  •                                                                                    

    Bags



                                                                                                               
  • Zebra Striped

  •                                                                                                                                                                                                                                                                                                                                                                                      

    Gadgets



                                                                                                                                                       
  • iPhone

  •                                                        
  • iPod

  •                                                                                                                                                                                                                                      




    Shopping Cart



                                                                                                                                             
  • Add your items here

  •         





    This is the js code. The red code part in the js code is set to be sorted when it can be dragged into. The orange code part is not very understandable and seems useless





    Copy code

    The code is as follows:

    $(function () {
        $("#catalog").accordion();
        $("#catalog li").draggable({
            appendTo: "body",
            helper: "clone",
            connectToSortable: "#cart ol"
        });
        $("#cart ol").sortable({
            items: "li:not(.placeholder)",
            connectWith: "li",
            sort: function () {
                $(this).removeClass("ui-state-default");
            },
            over: function () {
                //hides the placeholder when the item is over the sortable
                $(".placeholder").hide();
            },
            out: function () {
                if ($(this).children(":not(.placeholder)").length == 0) {
                    //shows the placeholder again if there are no items in the list
                    $(".placeholder").show();
                }
            }
        });
    });

      另外值得一提的是

    .ui-state-default貌似是拖拽时内置的一些类,对应的还有
    ui-state-hover等分别对应当有可以拖拽的对象在拖拽时,和拖拽到容器时的效果,本文代码没有体现。

    以上就是关于jQueryUI中拖拽排序问题的分析了,希望大家能够喜欢。

    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Repo: How To Revive Teammates
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    How to use Vue and Element-UI to implement drag-and-drop sorting function How to use Vue and Element-UI to implement drag-and-drop sorting function Jul 22, 2023 pm 04:12 PM

    How to use Vue and Element-UI to implement drag-and-drop sorting function Preface: In web development, drag-and-drop sorting function is a common and practical function. This article will introduce how to use Vue and Element-UI to implement the drag-and-drop sorting function, and demonstrate the implementation process through code examples. 1. Environment setup and installation Node.js Before starting, you need to install Node.js. You can visit https://nodejs.org/ to download and install the version corresponding to the operating system. Install VueCL

    How to use vue and Element-plus to implement drag-and-drop and sorting functions How to use vue and Element-plus to implement drag-and-drop and sorting functions Jul 17, 2023 pm 09:02 PM

    How to use vue and Element-plus to implement drag-and-drop and sorting functions Introduction: In modern web development, user interaction experience is becoming more and more important. Drag-and-drop and sorting functions are common interactive operations that allow users to easily rearrange elements or adjust the position of elements. This article will introduce how to use Vue and Element-plus libraries to implement drag-and-drop and sorting functions, and provide corresponding code examples. Technical preparation: In order to start writing Vue and Element-plus related code, we

    HTML, CSS, and jQuery: A technical guide to implementing drag-and-drop sorting HTML, CSS, and jQuery: A technical guide to implementing drag-and-drop sorting Oct 24, 2023 am 08:12 AM

    HTML, CSS, and jQuery: A technical guide to implementing drag-and-drop sorting In modern web design, drag-and-drop sorting is a very common feature. It allows users to sort by dragging elements, and provides a good user experience during real-time updates. This article will introduce you how to use HTML, CSS and jQuery to implement a simple drag-and-drop sorting function. Before we start, we first need to prepare some basic HTML structure and CSS styles, which will be used for our subsequent drag and drop sorting

    Use WeChat applet to implement drag-and-drop sorting function Use WeChat applet to implement drag-and-drop sorting function Nov 21, 2023 am 08:44 AM

    Using the WeChat applet to implement the drag-and-drop sorting function example code When I first started learning the WeChat applet, I always thought that it was very difficult to implement the drag-and-drop sorting function. However, by digging into the official documentation and trying different approaches, I finally managed to implement this functionality. In this article, I will share specific code examples that implement drag-and-drop sorting functionality. First, create a list of all sortable items in a wxml file. For example: <viewclass="sortable-li

    How to drag and drop data in Vue technology development How to drag and drop data in Vue technology development Oct 09, 2023 pm 12:50 PM

    How to drag and drop sort data in Vue technology development requires specific code examples. In modern web development, drag and drop sorting is a common functional requirement. As a popular JavaScript framework, Vue provides a wealth of tools and functions to simplify the development of drag-and-drop sorting. This article will introduce how to use Vue technology to drag and drop data and provide some specific code examples. First, we need to install Vue and some related dependencies, such as vue-draggable. In a Vue project,

    How to use Vue form processing to implement drag-and-drop sorting of form fields How to use Vue form processing to implement drag-and-drop sorting of form fields Aug 10, 2023 pm 11:57 PM

    How to use Vue form processing to implement drag-and-drop sorting of form fields. Forms are one of the most important components in web development. For large forms, sorting between fields is often a very common requirement. This article will introduce how to use Vue form processing to implement drag-and-drop sorting of form fields, and give corresponding code examples. First, we need to introduce Vue.js and the corresponding plug-ins, including the vuedraggable plug-in. We can use npm to install related plug-ins: npminsta

    How to use JavaScript to implement drag-and-drop sorting of images? How to use JavaScript to implement drag-and-drop sorting of images? Oct 18, 2023 am 10:24 AM

    How to use JavaScript to implement drag-and-drop sorting of images? In modern web development, it is a common requirement to implement the drag-and-drop sorting function of images. By dragging and dropping pictures, you can easily change the position of the pictures on the page, thereby realizing the sorting of pictures. This article will introduce how to use JavaScript to achieve this function, with specific code examples. First, we need to prepare some HTML and CSS code for displaying images and defining styles. Suppose there is a <di

    How to use Vue to achieve collapsible and drag-and-drop sorting effects? How to use Vue to achieve collapsible and drag-and-drop sorting effects? Jun 27, 2023 am 11:27 AM

    In front-end development, it is a common requirement to achieve foldable and drag-and-drop sorting effects. This function can be easily and quickly implemented using the Vue framework. This article will introduce how to use Vue to achieve foldable and drag-and-drop sorting effects, making the page look more beautiful and easier to use. 1. Collapse effect 1.1 Write HTML and CSS code First, create the elements that need to be folded in HTML, as shown below: <divclass="collapse">&lt

    See all articles