admin管理员组文章数量:1345136
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 badges1 Answer
Reset to default 14You 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.
本文标签: javascriptHow to make an element in ul lists unsortable and undraggableStack Overflow
版权声明:本文标题:javascript - How to make an element in ul lists unsortable and undraggable? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743789516a2539303.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论