Analysis of drag and drop sorting example in jqueryUI_jquery
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
Shopping Cart
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
$(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中拖拽排序问题的分析了,希望大家能够喜欢。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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