将不可排序的元素添加到可排序列表的末尾
我需要将一个元素添加到可排序列表的末尾,例如我需要添加一个额外的 li。
此 Li 无法排序,并且必须始终位于可排序列表的末尾。就像在 Firefox 选项卡中一样(末尾有一个 + 选项卡)。
知道我如何才能实现这一目标。
谢谢。
I need to add an element to the end of a sortable list, e.g. I need to add an extra li.
This Li cannot be sortable and must at all times stick to the end of the sortable list. Just like in firefox tabs (there is a + tab at the end).
Any idea how I can achieve this.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
向该 li 添加某种类(“nosort”或类似的东西),然后在定义可排序时添加以下选项:
这将阻止它被拖动。
Add a class of some sort to that li ('nosort' or something similar) then when you're defining the sortable add the following option:
This will prevent it from being draggable.
我找到了一个解决方案,可以完全阻止该项目进行排序。
在这里找到了解决方案:
jQuery UI 可排序:如何防止特定列表项被移动?
I found a solution that prevents the item from being sortable at all.
Found the solution here:
jQuery UI Sortable: How do I prevent a specific list item from being moved?
试试这个:
和 HTML:
Try this:
And the HTML: