如何在jsTree中延迟open_node?

时间:2017-09-20 12:24:01

标签: javascript jstree

我正在使用jsTree,只需要延迟打开节点。怎么做?

我认为需要在这里改变一切,但是......

.bind('changed.jstree', function(e, data) {}

1 个答案:

答案 0 :(得分:0)

.bind('changed.jstree', function(e, data) {
  setTimeout(300, /* your delay in ms*/, function() {
    // fn code goes here
  }
}