改变jstree节点的颜色

发布于 2024-12-19 06:54:34 字数 77 浏览 2 评论 0原文

有没有人尝试过使用类型插件更改 jstree 特定节点的颜色?而且我想避免该节点上的单击事件。
我需要这样做以防止用户选择同一节点。

Has anybody ever tried to change the color of jstree particular node using types plugin? And also I want to avoid click event on that node.
I need to do this to prevent users from selecting the same node.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请叫√我孤独 2024-12-26 06:54:34

有关如何更改被单击的任何节点的颜色的示例:

$(function() // document ready
{
    $("#my_jstree_instance a").live("click", function(e) 
    {
        nodeid = $(this).parent().attr("id").split("_")[1];
        $("#node_"+nodeid+" >a").css("color","red");
    }
}

Example on how to change color of any node being clicked:

$(function() // document ready
{
    $("#my_jstree_instance a").live("click", function(e) 
    {
        nodeid = $(this).parent().attr("id").split("_")[1];
        $("#node_"+nodeid+" >a").css("color","red");
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文