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 回答