将元素移动到 sortable_element 中的顶部/底部
我使用 sortable_element
通过拖放对某些列表进行排序,但我还希望有一些顶部/底部按钮来移动元素。是否有任何 JavaScript 函数可以像我将某个元素拖动到列表的顶部/底部一样?
I'm using sortable_element
to sort some list with dragging and dropping, but I would like to have also some top/bottom buttons to move elements. Is there any javascript function that would act as if I dragged some element to the top/bottom of the list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,但是您可以使用 InsertBefore/InsertAfter 或其他 DOM 函数轻松模拟它。
No, but you easily simulate it with InsertBefore/InsertAfter or other DOM functions.