JsTree如何将数组发送到select_node方法?

时间:2018-08-03 06:47:48

标签: javascript jquery jstree

我想在jsTree插件中使用checked方法来select_node个节点。 将id直接放在select_node时没有错误。

$('#jstree').jstree(true).select_node(["a1-b1","a3-b3"]);

但是我有一个div元素,其中包含id

<div id="roleid">
    "a1-b1","a3-b3" 
</div>

我想将div的值传递给select_node方法。根据JsTree documentation select_node方法想要一个数组。这就是为什么我创建了一个div值数组并发送给select_node方法的原因。但这不起作用。

var theArray = $('#roleid').text().split(",");
$('#jstree').jstree(true).select_node([theArray]);

如何将div的值发送到select_node方法?

0 个答案:

没有答案