我是 jQuery 的新手。我搜索了文档和stackoverflow,但找不到答案。单击按钮时,我需要取消可排序列表中的最后一次更改,它可以工作。
我还需要获取已移动到其先前位置的元素(或它的 id)。我该怎么做?
我的代码:
<script type="text/javascript">
$(function(){
$("#sortable").sortable({
placeholder: "ui-state-highlight",
opacity: 0.6
});
$("#cancelSort").click(function(){
$("#sortable").sortable("cancel");
});
});
</script>
<button id="cancelSort">Cancel Sort</button>
提前致谢!