我正在使用它,它在浏览器上完美运行
http://docs.jquery.com/UI/Sortable
现在我想将它保存到服务器,我知道serialize
,但我不想更新所有内容。
在服务器上我只想知道移动到哪里
是否有可能在stop
事件中找到答案?怎么样?
提前致谢。
答案 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);
}