最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to make an element in ul lists unsortable and undraggable? - Stack Overflow

programmeradmin0浏览0评论

An ul list contains some items. The last item must always stay in a static position. I've tried to use cancel option of the .sortable() method, but it doesn't switch off sortable, just dragging.

<ul id="sort">
    <li>Jquery</li>
    <li>MooTools</li>
    <li>Prototype</li>
    <li>YUI</li>
    <li class="last">must stay static (add position button)</li>
</ul>

$('#sort').sortable({
    cancel: '.last'
});

Example fiddle: /

An ul list contains some items. The last item must always stay in a static position. I've tried to use cancel option of the .sortable() method, but it doesn't switch off sortable, just dragging.

<ul id="sort">
    <li>Jquery</li>
    <li>MooTools</li>
    <li>Prototype</li>
    <li>YUI</li>
    <li class="last">must stay static (add position button)</li>
</ul>

$('#sort').sortable({
    cancel: '.last'
});

Example fiddle: http://jsfiddle/mbarinov/JLZvY/

Share Improve this question edited Nov 14, 2011 at 8:51 JJJ 33.2k20 gold badges94 silver badges103 bronze badges asked Nov 14, 2011 at 8:48 NiLLNiLL 13.9k15 gold badges48 silver badges59 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 14

You can use the items options to specify a selector which excludes items that expose the last class:

$('#sort').sortable({
    items: "li:not(.last)"
});

You will find an updated fiddle here.

发布评论

评论列表(0)

  1. 暂无评论