Jquery 可排序,带有小节的列表
我正在尝试使用 Jquery 可排序插件创建可排序列表。
我想要一个这样的列表...
- 第 1 节
- 第 1 节
- 第 1 项
- 第 2 部分
- 第 2 项
- 第 3 项
- 第 4 项
- 第 1 节
- 第 2 节
- 第 3 节
- 第 5 项
- 第 6 项
- 第 4 节
- 第 7 项
- 第 8 项
- 第 3 节
处于其级别的项目必须保持在其级别,IE 这是错误的...
- 第 1 节
- 第 2 节
或...
- 第 1 项
- 第 1 节
- 第 2 项
我尝试将其分解为可排序区域,但失败了。非常感谢所有帮助。
PS// 当移动一个部分或子部分时,其子项必须随之移动
I'm trying to create a sortable list using the Jquery sortable plugin.
I want a list like this...
- Section 1
- Sub Section 1
- Item 1
- Sub Section 2
- Item 2
- Item 3
- Item 4
- Sub Section 1
- Section 2
- Sub Section 3
- Item 5
- Item 6
- Sub Section 4
- Item 7
- Item 8
- Sub Section 3
Items at their level must stay at their level, I.E. this is wrong...
- Section 1
- Section 2
or...
- Item 1
- Section 1
- Item 2
I have tried to break it down into sortable areas but failed. All help greatly appreciated.
PS// When a section or sub-section is moved its child items must move with it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作的方法是确保每个嵌套列表都具有相同的类,并且将可排序项绑定到该类一次,同时也使列表不可选择。例如:
HTML:
JS:
请参见此处: http://jsbin.com/eyoxu/22 (我修改了这个,但从上面的答案中窃取了代码)
The way to do this is make sure that every nested list has the same class and you bind the sortable once to this class, also making lists unselectable. For example:
HTML:
JS:
See here: http://jsbin.com/eyoxu/22 (I modified this but otherwise stole code from it for the answer above)