jQuery UI可排序 - 保存对服务器的更改

时间:2010-07-13 06:25:41

标签: jquery jquery-ui jquery-ui-sortable

我正在使用它,它在浏览器上完美运行

http://docs.jquery.com/UI/Sortable

现在我想将它保存到服务器,我知道serialize,但我不想更新所有内容。

在服务器上我只想知道移动到哪里 是否有可能在stop事件中找到答案?怎么样?

提前致谢。

1 个答案:

答案 0 :(得分:1)

一种解决方案是将stop功能设置为:

stop: function(e,ui) {
    var allItems = $(this).sortable("toArray");
    var newSortValue = allItems.indexOf( $(ui.item).attr("id") );
    alert($(ui.item).attr("id") + " was moved to index " + newSortValue);
}