我有这些div的行,我想按照我的意愿排序,我尝试了但是它没有移动!
$("#sortable").sortable({
cancel: ".fixed"
});
$("#sortable").disableSelection();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div id="sortable" class="row">
<div id="sortable" style="margin-bottom:20px; cursor: move;">1</div>
<div id="sortable" style="margin-bottom:20px; cursor: move;">2</div>
<div id="sortable" style="margin-bottom:20px; cursor: move;">3</div>
<div id="sortable" style="margin-bottom:20px; cursor: move;">4</div>
<div id="sortable" style="margin-bottom:20px; cursor: move;">5</div>
</div>
这是fiddle。
答案 0 :(得分:2)
现在是时候升级插件或使用相关的jQuery版本1.7.2
:
您应该对使用jQuery migrate感兴趣:http://blog.jquery.com/2013/05/08/jquery-migrate-1-2-1-released/