29 lines
579 B
HTML
29 lines
579 B
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title>Tree</title>
|
|
<style>
|
|
html,body,div
|
|
{
|
|
height:100%;
|
|
margin:0px;
|
|
padding:0px;
|
|
font-size: 14px;
|
|
font-family: Arial;
|
|
text-align: left;
|
|
}
|
|
</style>
|
|
<script src="../dbms/tools.js"></script>
|
|
<script src="tree.js"></script>
|
|
<script>//<![CDATA[
|
|
function onloadpage()
|
|
{
|
|
tree=new TTree(document.getElementById("maintree"),"tr_","tree.php","./",24);
|
|
tree.Start();
|
|
}
|
|
//]]></script>
|
|
</head>
|
|
<body onload="onloadpage()">
|
|
<div id="maintree"></div>
|
|
</body>
|
|
</html> |