jQuery UI 如何:单击按钮并将整个可排序列表发送到另一个选项卡
我正在使用 jquery 可排序列表,其中显示了选项卡 http://jqueryui.com/demos/sortable/#connect-lists- through-tabs
我需要它做的是按一个按钮,说“将所有内容发送到选项卡 2”,选项卡 1 的所有项目都会发送到选项卡 2。 拜托,我真的需要这个。 谢谢。
I am using the jquery sortable lists with tabs shown here
http://jqueryui.com/demos/sortable/#connect-lists-through-tabs
What i need it to do is press a button, say "SEND ALL TO TAB 2", and all items of tab 1 are sent to tab 2.
Please, i really need this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个想法是找到选项卡 1 中的所有列表项,并将它们附加到选项卡 2 列表中。
当按下 id 为“send_all”的按钮(考虑将其放置在第一个选项卡)时,将触发以下代码。它查找并将所有 li 项目从“sortable1”移动到“sortable2”,然后切换到第二个选项卡。
The idea is to find all list items at tab 1, and append them to tab 2 list.
The following code is triggered when a button with id 'send_all' (consider placing it at the first tab) is pushed. It finds and moves all li items from 'sortable1' to 'sortable2', and then switches to the second tab.
考虑到该按钮是一个带有类transfer-items的链接,其href指向项目将传输到的选项卡的项目容器(在ui示例中#tabs-1 #tabs-2):
Considering the button is a link with class transfer-items whose href points to the items container of the tab the items will be transfer to (in the ui example #tabs-1 #tabs-2):