将不可排序的元素添加到可排序列表的末尾

发布于 2024-10-31 14:36:00 字数 146 浏览 3 评论 0原文

我需要将一个元素添加到可排序列表的末尾,例如我需要添加一个额外的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蹲在坟头点根烟 2024-11-07 14:36:00

向该 li 添加某种类(“nosort”或类似的东西),然后在定义可排序时添加以下选项:

cancel: '.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:

cancel: '.nosort',

This will prevent it from being draggable.

高跟鞋的旋律 2024-11-07 14:36:00

我找到了一个解决方案,可以完全阻止该项目进行排序。

// cancel: '.nosort', 

// Use this instead
items: 'li[id!=nosort]',

在这里找到了解决方案:
jQuery UI 可排序:如何防止特定列表项被移动?

I found a solution that prevents the item from being sortable at all.

// cancel: '.nosort', 

// Use this instead
items: 'li[id!=nosort]',

Found the solution here:
jQuery UI Sortable: How do I prevent a specific list item from being moved?

挖鼻大婶 2024-11-07 14:36:00

试试这个:

$( "#list ul" ).sortable({
      items: "li:not(.non)"
    });

和 HTML:

  <div id="list">
       <ul>
         <li>Item</li>
         <li>Item again</li>
         <li class="non">Item not sort</li>
       </ul>
  </div>

Try this:

$( "#list ul" ).sortable({
      items: "li:not(.non)"
    });

And the HTML:

  <div id="list">
       <ul>
         <li>Item</li>
         <li>Item again</li>
         <li class="non">Item not sort</li>
       </ul>
  </div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文