当前位置: 首页 > 文档资料 > jsTree 中文文档 >

使用 类型插件

优质
小牛编辑
136浏览
2023-12-01

该插件可以为节点组添加预定义类型,这意味着可以轻松控制每个组的嵌套规则和图标。

要设置节点的类型,可以使用节点数据set_type或为其提供type属性。

您可以在API中找到所有类型的插件配置选项和功能。

$(function () {
  $("#plugins7").jstree({
    "types" : {
      "default" : {
        "icon" : "glyphicon glyphicon-flash"
      },
      "demo" : {
        "icon" : "glyphicon glyphicon-ok"
      }
    },
    "plugins" : [ "types" ]
  });
});