2
我使用這個和它的瀏覽器可以正常使用jQuery UI的排序 - 更改保存到服務器
http://docs.jquery.com/UI/Sortable
現在我想將它保存到服務器上,我知道serialize
,但我不」我想更新一切。
在服務器上,我只想知道什麼移到了哪裏。
是否有可能在stop
事件中發現?如何?
在此先感謝。
我使用這個和它的瀏覽器可以正常使用jQuery UI的排序 - 更改保存到服務器
http://docs.jquery.com/UI/Sortable
現在我想將它保存到服務器上,我知道serialize
,但我不」我想更新一切。
在服務器上,我只想知道什麼移到了哪裏。
是否有可能在stop
事件中發現?如何?
在此先感謝。
一個解決辦法是你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);
}