我想在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
方法?