Posted in jQuery onMarch 24, 2021
继Bootstrap-treeview应用后,我又尝试了用jquery-treeview解决这个问题,记录我的解决方案,但是不一定是最优。
引入必备css
- jquery.treeview.css
引入必备js
- jquery-3.0.0.js
- jquery.treeview.js
编写页面treeview_jQuery.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TreeViewByJQuery</title>
<link href="../static/css/jquery.treeview.css" rel="stylesheet">
<script src="../static/js/jquery-3.0.0.js"></script>
<script src="../static/js/jquery.treeview.js"></script>
</head>
<script>
$(function () {
$.ajax({
type:"GET",
url:"/tree/treeView.do", //后台接口路径
async:false, //非异步
dataType:"json", //数据格式为json
success:function (data) {
var html = buildTree(data); //调用buildtree()构建树形结构
$("#tree").append(html); //将树形结构追加到DOM元素中
}
});
$("#tree").treeview({});//通过jquery.treeview将构建好的属性结构变成一个动态的树
});
/*
递归访问后台返回的数据,拼html代码构建树形结构
*/
var buildTree = function(data){
var html="";
$.each(data,function(i,n){ //遍历当前数据中的所有树节点
html = html+"<li><span class=\"folder\">"+n.text+"</span>"; //当前节点为父节点
var children = buildTree(n.nodes); //递归遍历当前节点的所有子节点
html = html+"<ul>"+children+"</ul>"; //将父节点与子节点拼在一起
})
return html;//返回构建的树形结构
}
</script>
<body>
<ul id="tree" class="filetree"></ul>
</body>
</html>
jQuery treeview树形结构应用
- Author -
Lqq77s声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@