0
我是jQuery的新手。我搜索了文檔和計算器,並找不到答案。點擊按鈕時,我需要取消排序列表中的最後更改,並且它可以工作。JQuery .sortable(「cancel」) - 如何獲取已移動的項目?
我還需要獲取已移至其先前位置的元素(或其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>
提前感謝!
Dom,非常感謝!它完美地解決了這個問題。 – user2274753