jsTree显示编辑,删除每个节点右侧的按钮而不是右键单击

时间:2017-07-12 11:49:20

标签: javascript jquery jstree jstree-dnd

在jsTree中,我想在每个节点的右侧显示编辑和删除按钮。 当前每个节点在右键单击节点时显示这些按钮。 有什么解决方案,因为我是jsTree的新手

1 个答案:

答案 0 :(得分:0)

选中此项http://jsfiddle.net/y8knc8de/,尝试将 标记替换为按钮标记。

$('#container').on('ready.jstree', function () {
    $('#container').off('click.jstree', '.jstree-anchor');
});

$('#container').bind('hover_node.jstree', function (e, data) {
    $('#' + data.node.id + '_my').show();
});

$('#container').bind('dehover_node.jstree', function (e, data) {
    $('#' + data.node.id + '_my').hide();
});