1

jqtree http://mbraak.github.io/jqTree/examples/drag_and_drop.htmlのドラッグ アンド ドロップ サポートを使用しています。

しかし、その効果は一時的に変更を保存する方法ですか??

4

1 に答える 1

3

移動イベントを jqtree http://mbraak.github.io/jqTree/#event-tree-moveにバインドする必要があるという回答を得ました

このように、すべての情報をサーバーに送信できます

$('#tree1').bind(
    'tree.move',
    function(event)
    {
        event.preventDefault();
        // do the move first, and _then_ POST back.
        event.move_info.do_move();
        $.post('your_url', {tree: $(this).tree('toJson')});
    }
);
于 2013-05-16T07:35:20.480 に答える