jQuery UI Sortable:排序时不改变项目的顺序
默认情况下,在排序时,项目会被替换(例如,如果我将第三个元素移动到第一个元素,则第一个和第二个元素将向下移动)
我不需要这种行为。我希望元素在完成排序(释放鼠标)时不要更改顺序。
我需要这个,因为我想询问用户是否想要更改元素或重新排序?
PS 选项 tolerance
只有 2 个选项,在这种情况下它们没有帮助。
By default, while sorting, items are replaced (for example, if I take the third element and move it to the first, than the first and the second elements will move down)
I do not need this behaviour. I'd like elements not to change order while I finish sorting (release mouse).
I need this because I want to ask user if he want to change element or to re-order?
P.S. option tolerance
have only 2 options, and they don't help in this situation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的意思是这样的(带有替换元素选项的可排序列表):
在 JSFiddle 上查看
I meant something like this (sortable list with option of replacing elements):
View on JSFiddle