Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想根据它们的 id 选择具有不同颜色的节点
那么我们如何改变选择的每个节点的颜色。
这是对的吗 ?
$("#id a:first").css("background-color", "red");
您必须将 id 作为您的 id 值传递。意味着如果您的 li 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"); });