代码之家  ›  专栏  ›  技术社区  ›  Aximili

jqueryui sortable-保存对服务器的更改

  •  2
  • Aximili  · 技术社区  · 14 年前

    我正在使用这个,它在浏览器上运行得非常好

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

    现在我想把它保存到服务器上,我知道了 serialize

    在服务器上,我只想知道什么被移动到了哪里。
    有可能在网上查到吗 stop 事件?怎么做?

    提前谢谢。

    1 回复  |  直到 14 年前
        1
  •  1
  •   Simen Echholt    14 年前

    一个解决办法是设置 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);
    }