Home > Backend Development > PHP Tutorial > 拖拽排序的逻辑是怎么样的

拖拽排序的逻辑是怎么样的

WBOY
Release: 2016-06-06 20:19:29
Original
1585 people have browsed it

默认排序字段为0 (该如何设计呢)
从小到大排序

拖动排序的时候如何进行逻辑上变更

回复内容:

默认排序字段为0 (该如何设计呢)
从小到大排序

拖动排序的时候如何进行逻辑上变更

这个,比如图片列表,三张图片,一般是数据库里有一个字段用来表示图片顺序,比如ord,你从数据库中读取图片的时候order by ord desc。
前端排序的时候,假如你用dragsort,那么每次拖动排序完毕后,都会触发一个js事件,那么在这个时间的回调函数里执行ajax请求,更新这个图片们的ord值的就行了,而这些ord值,前端排序空间会返回给你的,一般文档会提供的。

详情请参考jquery.dragsort.js,凭借三年前曾做过的印象,好像是这么一回事。

<code>order by sort_num asc, update_timestamp asc</code>
Copy after login

位置交换啊....
c=a
a=b
b=c
你问的是这个么...

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template