Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现当我选择 li 并使用 sortable() 时它不可用。当我将它应用到我的 ul 时它可以工作
$('ul').sortable();
但是如何避免第一个被排序?
您可以将 items 属性用于可排序功能。下面的代码将解决您的问题,并且第一个 li 将避免包含在可排序功能中。
$('ul').sortable({items: 'li:not(:first)'});
将“ui-state-disabled”类添加到第一个 li。该 li 的排序将被禁用
<li class="ui-state-disabled">sorting Disabled for this li</li>