jQuery UI Sortable不起作用

时间:2014-03-12 12:39:51

标签: jquery

我有这些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

1 个答案:

答案 0 :(得分:2)

现在是时候升级插件或使用相关的jQuery版本1.7.2

http://jsfiddle.net/kT4PV/2/

您应该对使用jQuery migrate感兴趣:http://blog.jquery.com/2013/05/08/jquery-migrate-1-2-1-released/