我想根据其ID选择不同颜色的节点
那么我们如何改变所选节点的颜色。
这是对的吗?
$("#id a:first").css("background-color", "red");
答案 0 :(得分:2)
您必须将id作为id值传递。 意味着如果你的标签是“node_10”那么你必须通过
$("#node_10 a:first").css("background-color", "red");
您需要在.bind方法中定义它。
.bind("select_node.jstree", function (e, data)
{
$("#node_10 a:first").css("background-color", "red");
});