如何在 jqueryui 中撤消/重做可排序操作?
我有一个可排序列表(jquery ui),您能否建议是否可以基于可排序实现“撤消/重做”?
想象一下,一个项目被拖动到一个新的占位符,然后我单击“撤消”按钮,该项目将移动到其原始位置。如果我单击“重做”按钮,该项目将移动到新的占位符。
也许有人知道如何执行此操作或其他操作。 提前致谢。
I have a sortable list(jquery ui), could you advise if it is possible to implement 'undo/redo' base on sortable?
Imagine that, a item is dragged to a new placeholder, then I click "undo" button and the item will move to its original position. If I click "redo" button and the item will move to that new placeholder.
Maybe someone knows how to do this or maybe something else.
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次移动后(在
update
上),您可以存储序列化(或使用toArray
) 在变量中排序,然后使用它在发生以下情况时重新排序您的项目一个“撤消”。事实上,您可以将序列化的数据推送到数组中,从而使您能够多次“撤消”。After each move (on
update
), you could store the serialized (or usetoArray
) order in a variable, and then use that to re-order your items in the event of an "undo." In fact, you could push the serialized data onto an array, giving you the ability to "undo" several times.