You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.8 KiB
91 lines
3.8 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<TITLE>左侧导航树</TITLE>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<style>
|
|
#iframeTop{
|
|
width: 100%;
|
|
height: 70px;
|
|
}
|
|
|
|
#iframeLeft{
|
|
width: 15%;
|
|
height: 1280px;
|
|
float: left;
|
|
}
|
|
#iframeContent{
|
|
width: 84%;
|
|
height: 1280px;
|
|
}
|
|
</style>
|
|
<!--引入css和js-->
|
|
<link rel="stylesheet" href="../../js/zTree/css/demo.css" type="text/css">
|
|
<link rel="stylesheet" href="../../js/zTree/css/zTreeStyle/zTreeStyle.css" type="text/css">
|
|
<script type="text/javascript" src="../../js/zTree/jquery-1.4.4.min.js"></script>
|
|
<script type="text/javascript" src="../../js/zTree/jquery.ztree.core.js"></script>
|
|
<script type="text/javascript" src="../../js/zTree/jquery.ztree.excheck.js"></script>
|
|
<script type="text/javascript" src="../../js/zTree/jquery.ztree.exedit.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
var zTreeObj;
|
|
|
|
//ztree使用简单json数据
|
|
var setting = {
|
|
data: {
|
|
simpleData: {
|
|
enable: true
|
|
}
|
|
}
|
|
};
|
|
var zNodes = [
|
|
{id: 1, pId: 0, name: "父节点1 - 展开", open: true},
|
|
{id: 11, pId: 1, name: "父节点11 - 折叠"},
|
|
{id: 111, pId: 11, name: "叶子节点111", url: "../login.html", target: "testIframe"},
|
|
{id: 112, pId: 11, name: "叶子节点112"},
|
|
{id: 113, pId: 11, name: "叶子节点113"},
|
|
{id: 114, pId: 11, name: "叶子节点114"},
|
|
{id: 12, pId: 1, name: "父节点12 - 折叠"},
|
|
{id: 121, pId: 12, name: "叶子节点121"},
|
|
{id: 122, pId: 12, name: "叶子节点122"},
|
|
{id: 123, pId: 12, name: "叶子节点123"},
|
|
{id: 124, pId: 12, name: "叶子节点124"},
|
|
{id: 13, pId: 1, name: "父节点13 - 没有子节点", isParent: true},
|
|
{id: 2, pId: 0, name: "父节点2 - 折叠"},
|
|
{id: 21, pId: 2, name: "父节点21 - 展开", open: true},
|
|
{id: 211, pId: 21, name: "叶子节点211"},
|
|
{id: 212, pId: 21, name: "叶子节点212"},
|
|
{id: 213, pId: 21, name: "叶子节点213"},
|
|
{id: 214, pId: 21, name: "叶子节点214"},
|
|
{id: 22, pId: 2, name: "父节点22 - 折叠"},
|
|
{id: 221, pId: 22, name: "叶子节点221"},
|
|
{id: 222, pId: 22, name: "叶子节点222"},
|
|
{id: 223, pId: 22, name: "叶子节点223"},
|
|
{id: 224, pId: 22, name: "叶子节点224"},
|
|
{id: 23, pId: 2, name: "父节点23 - 折叠"},
|
|
{id: 231, pId: 23, name: "叶子节点231"},
|
|
{id: 232, pId: 23, name: "叶子节点232"},
|
|
{id: 233, pId: 23, name: "叶子节点233"},
|
|
{id: 234, pId: 23, name: "叶子节点234"},
|
|
{id: 3, pId: 0, name: "父节点3 - 没有子节点", isParent: true}
|
|
];
|
|
$(document).ready(function () {
|
|
zTreeObj = $.fn.zTree.init($("#tree"), setting, zNodes);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<iframe id="iframeTop" name="iframeTop" frameborder="0" src="view/top.html"></iframe>
|
|
<iframe id="iframeLeft" name="iframeLeft" frameborder="0" src="left.html"></iframe>
|
|
<iframe id="iframeContent" name="iframeContent" frameborder="0" src="../login.html"></iframe>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
let height = $(window).height();
|
|
$('#iframeLeft').attr('style', 'height: ' + height + 'px;');
|
|
$('#iframeContent').attr('style', 'height: ' + height + 'px;');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |