1 Star 0 Fork 36

马小帅 / Light Year Example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test_jstree.html 14.44 KB
一键复制 编辑 原始数据 按行查看 历史
笔下光年 提交于 2020-06-19 20:00 . 新增三个插件,修改bug
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>树状结构插件jstree - 光年(Light Year Admin)后台管理系统模板</title>
<link rel="icon" href="favicon.ico" type="image/ico">
<meta name="keywords" content="LightYear,光年,后台模板,后台管理系统,光年HTML模板">
<meta name="description" content="LightYear是一个基于Bootstrap v3.3.7的后台管理系统的HTML模板。">
<meta name="author" content="yinqi">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/materialdesignicons.min.css" rel="stylesheet">
<link href="js/jstree/style.min.css" rel="stylesheet">
<link href="css/style.min.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header"><h4>树状结构插件 jstree</h4></div>
<div class="card-body">
<p>插件使用jstree 3.3.9,官网地址:<a href="http://jstree.com/" target="_blank">http://jstree.com/</a></p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>类型树视图</h4></div>
<div class="card-body">
<div id="types-tree"></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>复选框树视图</h4></div>
<div class="card-body">
<div id="checkbox-tree"></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>拖放树视图</h4></div>
<div class="card-body">
<div id="drag-drop-tree"></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card">
<div class="card-header"><h4>Ajax树视图</h4></div>
<div class="card-body">
<div id="ajax-tree"></div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jstree/jstree.min.js"></script>
<script type="text/javascript">
(function() {
"use strict";
/* -- Basic Tree -- */
$('#types-tree').jstree({
'core' : {
'themes' : {
'responsive': false
},
'data' : [
{
"text" : "Project",
"state" : {"opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{
"text" : "Assets",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{ "text" : "CSS", "state" : { "opened" : true }, "icon" : "mdi mdi-file-outline" },
{ "text" : "JS", "icon" : "mdi mdi-file-outline" },
{ "text" : "Fonts", "icon" : "mdi mdi-file-outline" },
{ "text" : "Images", "icon" : "mdi mdi-file-outline" },
{
"text" : "Plugins",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{ "text" : "jQuery", "icon" : "mdi mdi-file-outline" },
{ "text" : "Bootstrap", "state" : { "selected" : true, "opened" : true }, "icon" : "mdi mdi-file-outline" }
]
}
]
},
{
"text" : "Icons",
"icon" : "mdi mdi-opacity"
},
{
"text" : "Events",
"icon" : "mdi mdi-calendar"
},
{
"text" : "UI Kits",
"state" : { "opened" : true },
"icon" : "mdi mdi-package-variant-closed",
"children" : [
{ "text" : "Buttons", "icon" : "mdi mdi-file-outline" },
{ "text" : "Badges", "icon" : "mdi mdi-file-outline" }
]
},
{
"text" : "Forms",
"icon" : "mdi mdi-file-document"
},
{
"text" : "Charts",
"icon" : "mdi mdi-chart-pie"
},
{
"text" : "Pages",
"state" : { "opened" : true },
"icon" : "mdi mdi-book-open-variant",
"children" : [
{ "text" : "Coming Soon", "icon" : "mdi mdi-file-outline" },
{ "text" : "Maintenance", "icon" : "mdi mdi-file-outline" }
]
},
{
"text" : "Tables",
"icon" : "mdi mdi-table"
},
]
},
{
"text" : "Documents",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline"
}
]
},
'plugins' : ['types']
});
/* -- Checkbox Tree -- */
$('#checkbox-tree').jstree({
'core' : {
'themes' : {
'responsive': false
},
'data' : [
{
"text" : "Project",
"state" : {"opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{
"text" : "Assets",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{ "text" : "CSS", "state" : { "opened" : true }, "icon" : "mdi mdi-file-outline" },
{ "text" : "JS", "icon" : "mdi mdi-file-outline" },
{ "text" : "Fonts", "icon" : "mdi mdi-file-outline" },
{ "text" : "Images", "icon" : "mdi mdi-file-outline" },
{
"text" : "Plugins",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{ "text" : "jQuery", "icon" : "mdi mdi-file-outline" },
{ "text" : "Bootstrap", "state" : { "selected" : true, "opened" : true }, "icon" : "mdi mdi-file-outline" }
]
}
]
},
{
"text" : "Icons",
"icon" : "mdi mdi-opacity"
},
{
"text" : "Events",
"icon" : "mdi mdi-calendar"
},
{
"text" : "UI Kits",
"state" : { "opened" : true },
"icon" : "mdi mdi-package-variant-closed",
"children" : [
{ "text" : "Buttons", "icon" : "mdi mdi-file-outline" },
{ "text" : "Badges", "icon" : "mdi mdi-file-outline" }
]
},
{
"text" : "Forms",
"icon" : "mdi mdi-file-document"
},
{
"text" : "Charts",
"icon" : "mdi mdi-chart-pie"
},
{
"text" : "Pages",
"state" : { "opened" : true },
"icon" : "mdi mdi-book-open-variant",
"children" : [
{ "text" : "Coming Soon", "icon" : "mdi mdi-file-outline" },
{ "text" : "Maintenance", "icon" : "mdi mdi-file-outline" }
]
},
{
"text" : "Tables",
"icon" : "mdi mdi-table"
},
]
},
{
"text" : "Documents",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline"
}
]
},
'plugins' : ['types', 'checkbox']
});
/* -- Drag & Drop Tree -- */
$('#drag-drop-tree').jstree({
'core' : {
'themes' : {
'responsive': false
},
'check_callback' : true,
'data' : [
{
"text" : "Project",
"state" : {"opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{
"text" : "Assets",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{ "text" : "CSS", "state" : { "opened" : true }, "icon" : "mdi mdi-file-outline" },
{ "text" : "JS", "icon" : "mdi mdi-file-outline" },
{ "text" : "Fonts", "icon" : "mdi mdi-file-outline" },
{ "text" : "Images", "icon" : "mdi mdi-file-outline" },
{
"text" : "Plugins",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline",
"children" : [
{ "text" : "jQuery", "icon" : "mdi mdi-file-outline" },
{ "text" : "Bootstrap", "state" : { "selected" : true, "opened" : true }, "icon" : "mdi mdi-file-outline" }
]
}
]
},
{
"text" : "Icons",
"icon" : "mdi mdi-opacity"
},
{
"text" : "Events",
"icon" : "mdi mdi-calendar"
},
{
"text" : "UI Kits",
"state" : { "opened" : true },
"icon" : "mdi mdi-package-variant-closed",
"children" : [
{ "text" : "Buttons", "icon" : "mdi mdi-file-outline" },
{ "text" : "Badges", "icon" : "mdi mdi-file-outline" }
]
},
{
"text" : "Forms",
"icon" : "mdi mdi-file-document"
},
{
"text" : "Charts",
"icon" : "mdi mdi-chart-pie"
},
{
"text" : "Pages",
"state" : { "opened" : true },
"icon" : "mdi mdi-book-open-variant",
"children" : [
{ "text" : "Coming Soon", "icon" : "mdi mdi-file-outline" },
{ "text" : "Maintenance", "icon" : "mdi mdi-file-outline" }
]
},
{
"text" : "Tables",
"icon" : "mdi mdi-table"
},
]
},
{
"text" : "Documents",
"state" : { "opened" : true },
"icon" : "mdi mdi-folder-outline"
}
]
},
'plugins' : ['dnd']
});
/* -- Ajax Tree -- */
$('#ajax-tree').jstree({
'core' : {
'animation' : 0,
'check_callback' : true,
'force_text' : true,
'themes' : {
'responsive': false
},
'data' : {
'url' : function (node) {
return node.id === '#' ? 'ajax_roots.json' : 'ajax_children.json';
},
'data' : function (node) {
return { 'id' : node.id };
}
}
},
"types" : {
'default' : {
'icon' : 'mdi mdi-folder-outline'
},
'file' : {
'icon' : 'mdi mdi-file-outline'
}
},
"plugins" : [ "contextmenu", "dnd", "search", "state", "types", "wholerow" ]
});
})();
</script>
</body>
</html>
HTML
1
https://gitee.com/weikety/Light-Year-Example.git
git@gitee.com:weikety/Light-Year-Example.git
weikety
Light-Year-Example
Light Year Example
master

搜索帮助