亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > JSP > 正文

如何實現JSP動態樹

2024-09-05 00:18:40
字體:
來源:轉載
供稿:網友

我們在實際項目開發中是會經常用到動態樹的,其實動態樹就是可以支持無限級子節點的功能。但是你知道如何實現JSP動態樹嗎?今天我就去給大家實際演示一下動態樹的實現方法。

第一步:在開始之前我們需要準備這么一個js文件,代碼如下。我姑且將它命名為tree.js。

復制代碼 代碼如下:

function Node(id, pid, name, url, title, target, icon, iconOpen, open, appendedStr) {
????this.id = id;
????this.pid = pid;
????this.name = name;
????this.url = url;
????this.title = title;
????this.target = target;

????this.icon = icon;
????this.iconOpen = iconOpen;

????this.appendedStr = appendedStr;

????this._io = open || false;
????this._is = false;
????this._ls = false;
????this._hc = false;
????this._ai = 0;
????this._p;
};
// Tree object
function tree(objName,path) {
????this.path = path;
????this.config = {
????????target????????????????????: null,
????????folderLinks????????????: true,
????????useSelection????????: true,
????????useCookies????????????: true,
????????useLines????????????????: true,
????????useIcons????????????????: true,
????????useStatusText????????: false,
????????closeSameLevel????: false,
????????inOrder????????????????????: false
????}
????this.icon = {
????????root????????????????: path + 'TreeDemo/images/tree_base.gif',
????????folder????????????: path + 'TreeDemo/images/tree_folder.gif',
????????folderOpen????: path + 'TreeDemo/images/tree_folderopen.gif',
????????node????????????????: path + 'TreeDemo/images/tree_folder.gif',
????????empty????????????????: path + 'TreeDemo/images/tree_empty.gif',
????????line????????????????: path + 'TreeDemo/images/tree_line.gif',
????????join????????????????: path + 'TreeDemo/images/tree_join.gif',
????????joinBottom????: path + 'TreeDemo/images/tree_joinbottom.gif',
????????plus????????????????: path + 'TreeDemo/images/tree_plus.gif',
????????plusBottom????: path + 'TreeDemo/images/tree_plusbottom.gif',
????????minus????????????????: path + 'TreeDemo/images/tree_minus.gif',
????????minusBottom????: path + 'TreeDemo/images/tree_minusbottom.gif',
????????nlPlus????????????: path + 'TreeDemo/images/tree_nolines_plus.gif',
????????nlMinus????????????: path + 'TreeDemo/images/tree_nolines_minus.gif'
????};
????this.obj = objName;
????this.aNodes = [];
????this.aIndent = [];
????this.root = new Node(-1);
????this.selectedNode = null;
????this.selectedFound = false;
????this.completed = false;
};
// Adds a new node to the node array
tree.prototype.add = function(id, pid, name, url, title, target, icon, iconOpen, open, appendedStr) {
????this.aNodes[this.aNodes.length] = new Node(id, pid, name, url, title, target, icon, iconOpen, open, appendedStr);
};
// Open/close all nodes
tree.prototype.openAll = function() {
????this.oAll(true);
};
tree.prototype.closeAll = function() {
????this.oAll(false);
};
// Outputs the tree to the page
tree.prototype.toString = function() {
????var str = '<div class="tree">/n';
????if (document.getElementById) {
????????if (this.config.useCookies) this.selectedNode = this.getSelected();
????????str += this.addNode(this.root);
????} else str += 'Browser not supported.';
????str += '</div>';
????if (!this.selectedFound) this.selectedNode = null;
????this.completed = true;
????return str;
};
// Creates the tree structure
tree.prototype.addNode = function(pNode) {
????var str = '';
????var n=0;
????if (this.config.inOrder) n = pNode._ai;
????for (n; n<this.aNodes.length; n++) {
????????if (this.aNodes[n].pid == pNode.id) {
????????????var cn = this.aNodes[n];
????????????cn._p = pNode;
????????????cn._ai = n;
????????????this.setCS(cn);
????????????if (!cn.target && this.config.target) cn.target = this.config.target;
????????????if (cn._hc && !cn._io && this.config.useCookies) cn._io = this.isOpen(cn.id);
????????????if (!this.config.folderLinks && cn._hc) cn.url = null;
????????????if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound) {
????????????????????cn._is = true;
????????????????????this.selectedNode = n;
????????????????????this.selectedFound = true;
????????????}
????????????str += this.node(cn, n);
????????????if (cn._ls) break;
????????}
????}
????return str;
};
// Creates the node icon, url and text
tree.prototype.node = function(node, nodeId) {
????var str = '<div class="treeNode">' + this.indent(node, nodeId);
????if (this.config.useIcons) {
????????if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node._hc) ? this.icon.folder : this.icon.node);
????????if (!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node;
????????if (this.root.id == node.pid) {
????????????node.icon = this.icon.root;
????????????node.iconOpen = this.icon.root;
????????}
????????str += '<img id="i' + this.obj + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />';
????}
????if (node.url) {
????????str += '<a id="s' + this.obj + nodeId + '" class="' + ((this.config.useSelection) ? ((node._is ? 'nodeSel' : 'node')) : 'node') + '" href="' + node.url + '" href="' + node.url + '"';
????????if (node.title) str += ' title="' + node.title + '"';
????????if (node.target) str += ' target="' + node.target + '"';
????????if (this.config.useStatusText) str += ' onmouseover="window.status=/'' + node.name + '/';return true;" onmouseout="window.status=/'/';return true;" ';
????????if (this.config.useSelection && ((node._hc && this.config.folderLinks) || !node._hc))
????????????str += ' onclick="javascript: ' + this.obj + '.s(' + nodeId + ');"';
????????str += '>';
????}
????else if ((!this.config.folderLinks || !node.url) && node._hc && node.pid != this.root.id)
????????str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');" href="javascript: ' + this.obj + '.o(' + nodeId + ');" class="node">';
????str += node.name;
????if (node.url || ((!this.config.folderLinks || !node.url) && node._hc)) str += '</a>';

????//[!--begin--]add by wangxr to append str
????if(node.appendedStr) str += node.appendedStr;
????//[!--end--]
????str += '</div>';
????if (node._hc) {
????????str += '<div id="d' + this.obj + nodeId + '" class="clip" style="display:' + ((this.root.id == node.pid || node._io) ? 'block' : 'none') + ';" style="display:' + ((this.root.id == node.pid || node._io) ? 'block' : 'none') + ';">';
????????str += this.addNode(node);
????????str += '</div>';
????}
????this.aIndent.pop();
????return str;
};
// Adds the empty and line icons
tree.prototype.indent = function(node, nodeId) {
????var str = '';
????if (this.root.id != node.pid) {
????????for (var n=0; n<this.aIndent.length; n++)
????????????str += '<img src="' + ( (this.aIndent[n] == 1 && this.config.useLines) ? this.icon.line : this.icon.empty ) + '" src="' + ( (this.aIndent[n] == 1 && this.config.useLines) ? this.icon.line : this.icon.empty ) + '" alt="" />';
????????(node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);
????????if (node._hc) {
????????????str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');" href="javascript: ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';
????????????if (!this.config.useLines) str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus;
????????????else str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) );
????????????str += '" src="'; if (!this.config.useLines) str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus; else str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) ); str += '" alt="" /></a>';
????????} else str += '<img src="' + ( (this.config.useLines) ? ((node._ls) ? this.icon.joinBottom : this.icon.join ) : this.icon.empty) + '" src="' + ( (this.config.useLines) ? ((node._ls) ? this.icon.joinBottom : this.icon.join ) : this.icon.empty) + '" alt="" />';
????}
????return str;
};
// Checks if a node has any children and if it is the last sibling
tree.prototype.setCS = function(node) {
????var lastId;
????for (var n=0; n<this.aNodes.length; n++) {
????????if (this.aNodes[n].pid == node.id) node._hc = true;
????????if (this.aNodes[n].pid == node.pid) lastId = this.aNodes[n].id;
????}
????if (lastId==node.id) node._ls = true;
};
// Returns the selected node
tree.prototype.getSelected = function() {
????var sn = this.getCookie('cs' + this.obj);
????return (sn) ? sn : null;
};
// Highlights the selected node
tree.prototype.s = function(id) {
????if (!this.config.useSelection) return;
????var cn = this.aNodes[id];
????if (cn._hc && !this.config.folderLinks) return;
????if (this.selectedNode != id) {
????????if (this.selectedNode || this.selectedNode==0) {
????????????eOld = document.getElementById("s" + this.obj + this.selectedNode);
????????????eOld.className = "node";
????????}
????????eNew = document.getElementById("s" + this.obj + id);
????????eNew.className = "nodeSel";
????????this.selectedNode = id;
????????if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id);
????}
};
// Toggle Open or close
tree.prototype.o = function(id) {
????var cn = this.aNodes[id];
????this.nodeStatus(!cn._io, id, cn._ls);
????cn._io = !cn._io;
????if (this.config.closeSameLevel) this.closeLevel(cn);
????if (this.config.useCookies) this.updateCookie();
};
// Open or close all nodes
tree.prototype.oAll = function(status) {
????for (var n=0; n<this.aNodes.length; n++) {
????????if (this.aNodes[n]._hc && this.aNodes[n].pid != this.root.id) {
????????????this.nodeStatus(status, n, this.aNodes[n]._ls)
????????????this.aNodes[n]._io = status;
????????}
????}
????if (this.config.useCookies) this.updateCookie();
};
// Opens the tree to a specific node
tree.prototype.openTo = function(nId, bSelect, bFirst) {
????if (!bFirst) {
????????for (var n=0; n<this.aNodes.length; n++) {
????????????if (this.aNodes[n].id == nId) {
????????????????nId=n;
????????????????break;
????????????}
????????}
????}
????var cn=this.aNodes[nId];
????if (cn.pid==this.root.id || !cn._p) return;
????cn._io = true;
????cn._is = bSelect;
????if (this.completed && cn._hc) this.nodeStatus(true, cn._ai, cn._ls);
????if (this.completed && bSelect) this.s(cn._ai);
????else if (bSelect) this._sn=cn._ai;
????this.openTo(cn._p._ai, false, true);
};
// Closes all nodes on the same level as certain node
tree.prototype.closeLevel = function(node) {
????for (var n=0; n<this.aNodes.length; n++) {
????????if (this.aNodes[n].pid == node.pid && this.aNodes[n].id != node.id && this.aNodes[n]._hc) {
????????????this.nodeStatus(false, n, this.aNodes[n]._ls);
????????????this.aNodes[n]._io = false;
????????????this.closeAllChildren(this.aNodes[n]);
????????}
????}
}
// Closes all children of a node
tree.prototype.closeAllChildren = function(node) {
????for (var n=0; n<this.aNodes.length; n++) {
????????if (this.aNodes[n].pid == node.id && this.aNodes[n]._hc) {
????????????if (this.aNodes[n]._io) this.nodeStatus(false, n, this.aNodes[n]._ls);
????????????this.aNodes[n]._io = false;
????????????this.closeAllChildren(this.aNodes[n]);????????
????????}
????}
}
// Change the status of a node(open or closed)
tree.prototype.nodeStatus = function(status, id, bottom) {
????eDiv????= document.getElementById('d' + this.obj + id);
????eJoin????= document.getElementById('j' + this.obj + id);
????if (this.config.useIcons) {
????????eIcon????= document.getElementById('i' + this.obj + id);
????????eIcon.src = (status) ? this.aNodes[id].iconOpen : this.aNodes[id].icon;
????}
????eJoin.src = (this.config.useLines)?
????((status)?((bottom)?this.icon.minusBottom:this.icon.minus):((bottom)?this.icon.plusBottom:this.icon.plus)):
????((status)?this.icon.nlMinus:this.icon.nlPlus);
????eDiv.style.display = (status) ? 'block': 'none';
};
// [Cookie] Clears a cookie
tree.prototype.clearCookie = function() {
????var now = new Date();
????var yesterday = new Date(now.getTime() - 1000 * 60 * 60 * 24);
????this.setCookie('co'+this.obj, 'cookieValue', yesterday);
????this.setCookie('cs'+this.obj, 'cookieValue', yesterday);
};
// [Cookie] Sets value in a cookie
tree.prototype.setCookie = function(cookieName, cookieValue, expires, path, domain, secure) {
????document.cookie =
????????escape(cookieName) + '=' + escape(cookieValue)
????????+ (expires ? '; expires=' + expires.toGMTString() : '')
????????+ (path ? '; path=' + path : '')
????????+ (domain ? '; domain=' + domain : '')
????????+ (secure ? '; secure' : '');
};
// [Cookie] Gets a value from a cookie
tree.prototype.getCookie = function(cookieName) {
????var cookieValue = '';
????var posName = document.cookie.indexOf(escape(cookieName) + '=');
????if (posName != -1) {
????????var posValue = posName + (escape(cookieName) + '=').length;
????????var endPos = document.cookie.indexOf(';', posValue);
????????if (endPos != -1) cookieValue = unescape(document.cookie.substring(posValue, endPos));
????????else cookieValue = unescape(document.cookie.substring(posValue));
????}
????return (cookieValue);
};
// [Cookie] Returns ids of open nodes as a string
tree.prototype.updateCookie = function() {
????var str = '';
????for (var n=0; n<this.aNodes.length; n++) {
????????if (this.aNodes[n]._io && this.aNodes[n].pid != this.root.id) {
????????????if (str) str += '.';
????????????str += this.aNodes[n].id;
????????}
????}
????this.setCookie('co' + this.obj, str);
};
// [Cookie] Checks if a node id is in a cookie
tree.prototype.isOpen = function(id) {
????var aOpen = this.getCookie('co' + this.obj).split('.');
????for (var n=0; n<aOpen.length; n++)
????????if (aOpen[n] == id) return true;
????return false;
};
// If Push and pop is not implemented by the browser
if (!Array.prototype.push) {
????Array.prototype.push = function array_push() {
????????for(var i=0;i<arguments.length;i++)
????????????this[this.length]=arguments[i];
????????return this.length;
????}
};
if (!Array.prototype.pop) {
????Array.prototype.pop = function array_pop() {
????????lastElement = this[this.length-1];
????????this.length = Math.max(this.length-1,0);
????????return lastElement;
????}
};


由于代碼太長,我這里就不給大家拿來細講了,我們只要會用就OK。就像豬肉我們能吃就OK,不一定非要知道豬養。
第二步:創建數據庫,創建數據庫的代碼如下,我這邊使用的是MySQL數據為。
create database `treedemo`;
use treedemo;
create table trees(
tid int primary key not null,
pid int not null,
tname varchar(50) not null,
isleaf int
);
select * from trees;
insert into trees(tid,pid,tname)values(0,-1,'組織內容');
insert into trees(tid,pid,tname)values(1,0,'短信');
insert into trees(tid,pid,tname)values(2,0,'彩信');
insert into trees(tid,pid,tname)values(3,0,'新聞');
insert into trees(tid,pid,tname)values(4,1,'移動生活');
insert into trees(tid,pid,tname)values(5,1,'單條滾動點播');
insert into trees(tid,pid,tname)values(6,2,'定制');
insert into trees(tid,pid,tname)values(7,2,'點播');
insert into trees(tid,pid,tname)values(8,3,'房產頻道');
insert into trees(tid,pid,tname)values(9,3,'農村頻道');
insert into trees(tid,pid,tname)values(10,3,'數碼頻道');
insert into trees(tid,pid,tname)values(11,6,'幽默笑話');
insert into trees(tid,pid,tname)values(12,7,'鈴聲');
insert into trees(tid,pid,tname)values(13,7,'賀卡');
insert into trees(tid,pid,tname)values(14,7,'動畫');
insert into trees(tid,pid,tname)values(15,13,'賀卡1');
insert into trees(tid,pid,tname)values(16,13,'賀卡2');
insert into trees(tid,pid,tname)values(17,13,'賀卡3');
insert into trees(tid,pid,tname)values(18,13,'賀卡4');
select * from trees;
表字段的說明:
(1)tid表示節點的編號;
(2)pid 該節點父節點的編號;
(3)tname 節點名稱;
(4)isleaf 表明該節點是否為葉節點,葉節點為1,非葉節點為0。該字段可根據實際情況增刪。

第三步:在myeclipse中創建一個WEB工程,命名為“TreeDemo”。在WebRoot文件夾下創建js文件夾、css文件夾、images文件夾分別用來存放.js文件、.css文件和項目中用到的圖片文件。
第四步:編寫數據庫連接類,其中的用戶名、密碼需要根據你數據庫情況進行修改,代碼如下。

?

復制代碼 代碼如下:

?


package com.sx.mas.utils;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class DBConn {
private static final String DRIVER="com.mysql.jdbc.Driver";
private static final String URL="jdbc:mysql://localhost:3306/treedemo";
Connection conn=null;
public Connection getConnection(){
try {
Class.forName(DRIVER);
conn=DriverManager.getConnection(URL,"root","root");
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return conn;
}
}
package com.sx.mas.utils;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class DBConn {
????private static final String DRIVER="com.mysql.jdbc.Driver";
????private static final String URL="jdbc:mysql://localhost:3306/treedemo";
????Connection conn=null;
????public Connection getConnection(){
????????try {
????????????Class.forName(DRIVER);
????????????conn=DriverManager.getConnection(URL,"root","root");
????????} catch (ClassNotFoundException e) {
????????????// TODO Auto-generated catch block
????????????e.printStackTrace();
????????} catch (SQLException e) {
????????????// TODO Auto-generated catch block
????????????e.printStackTrace();
????????}
????????return conn;
????}
}


第五步:編寫javabean類,代碼如下,

?

復制代碼 代碼如下:

?


package com.sx.mas.beans;
public class TreeNode {
private int tid;
private int pid;
private String tname;
private int isleaf;
public int getTid() {
return tid;
}
public void setTid(int tid) {
this.tid = tid;
}
public int getPid() {
return pid;
}
public void setPid(int pid) {
this.pid = pid;
}
public String getTname() {
return tname;
}
public void setTname(String tname) {
this.tname = tname;
}
public int getIsleaf() {
return isleaf;
}
public void setIsleaf(int isleaf) {
this.isleaf = isleaf;
}
}
package com.sx.mas.beans;
public class TreeNode {
????private int tid;
????private int pid;
????private String tname;
????private int isleaf;

????public int getTid() {
????????return tid;
????}
????public void setTid(int tid) {
????????this.tid = tid;
????}
????public int getPid() {
????????return pid;
????}
????public void setPid(int pid) {
????????this.pid = pid;
????}
????public String getTname() {
????????return tname;
????}
????public void setTname(String tname) {
????????this.tname = tname;
????}
????public int getIsleaf() {
????????return isleaf;
????}
????public void setIsleaf(int isleaf) {
????????this.isleaf = isleaf;
????}
}


第六步:創建相關的DAO類,代碼如下。DAO類將數據庫表裝保存到Vector對象中。

?

復制代碼 代碼如下:

?


package com.sx.mas.beans;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Vector;
import com.sx.mas.utils.DBConn;
public class TreeDAO {
public Vector getTree(){
Vector vec = new Vector();
DBConn dbconn = new DBConn();
Connection conn = dbconn.getConnection();
try {
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("select * from trees");
while(rs.next()){
TreeNode treenode = new TreeNode();
treenode.setTid(rs.getInt("tid"));
treenode.setPid(rs.getInt("pid"));
treenode.setTname(rs.getString("tname"));
treenode.setIsleaf(rs.getInt("isleaf"));
vec.add(treenode);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return vec;
}
}
package com.sx.mas.beans;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Vector;
import com.sx.mas.utils.DBConn;
public class TreeDAO {
????public Vector getTree(){
????????Vector vec = new Vector();
????????DBConn dbconn = new DBConn();
????????Connection conn = dbconn.getConnection();
????????try {
????????????Statement stmt = conn.createStatement();
????????????ResultSet rs = stmt.executeQuery("select * from trees");
????????????while(rs.next()){
????????????????TreeNode treenode = new TreeNode();
????????????????treenode.setTid(rs.getInt("tid"));
????????????????treenode.setPid(rs.getInt("pid"));
????????????????treenode.setTname(rs.getString("tname"));
???????????? treenode.setIsleaf(rs.getInt("isleaf"));
????????????????vec.add(treenode);
????????????}
????????} catch (SQLException e) {
????????????// TODO Auto-generated catch block
????????????e.printStackTrace();
????????}
????????return vec;
????}
}


第七步:頁面上顯示樹狀結構。在TreeDemo中創建show_tree.jsp頁面,代碼如下。

?

復制代碼 代碼如下:

?


<%@ page language="java" import="java.util.*" contentType="text/html; charset=gb2312"%>
<%@ page import="com.sx.mas.beans.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<LINK href="css/tree.css" href="css/tree.css" type=text/css rel=stylesheet>
<LINK href="css/css.css" href="css/css.css" rel=stylesheet>
<SCRIPT src="js/tree.js" src="js/tree.js" type=text/javascript></SCRIPT>
<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css" href="styles.css">
-->
</head>
<body onresize="return true;" leftMargin=1 topMargin=1>
<table>
<tr>
<td valign="top">
<TABLE class=table_left_menu cellSpacing=0 cellPadding=0 width="100%"
background=images/tree_bg.gif border=0>
<TBODY>
<TR>
<TD>
<DIV align=center><IMG height=24 src="images/tree_button.gif" src="images/tree_button.gif"
width=147 useMap=#Map border=0>
<MAP id=Map name=Map>
<AREA shape="RECT" shape="RECT" coords="16,3,69,15" coords="16,3,69,15" href="javascript:%20d.openAll()" href="javascript:%20d.openAll()">
<AREA shape="RECT" shape="RECT" coords="72,3,131,15" coords="72,3,131,15" href="javascript:%20d.closeAll()" href="javascript:%20d.closeAll()">
</MAP>
</DIV>
</TD>
</TR>
</TBODY>
</TABLE>
<SCRIPT type=text/javascript>
d = new tree('d','../');
<%
TreeDAO treedao = new TreeDAO();
Vector vec =treedao.getTree();
Iterator iterator = vec.iterator();
while(iterator.hasNext()){
TreeNode treenode = (TreeNode)iterator.next();
if(treenode.getIsleaf()==0){
%>
d.add(<%=treenode.getTid()%>,<%=treenode.getPid()%>,'<%=treenode.getTname()%>')
<%}else{%>
d.add(<%=treenode.getTid()%>,<%=treenode.getPid()%>,'<%=treenode.getTname()%>',parent.getUrlByCatalogId('<%=treenode.getTid()%>'),null,'list');
<%}}%>
document.write(d);
</SCRIPT>
</td>
</tr>
</table>
</body>
</html>
<%@ page language="java" import="java.util.*" contentType="text/html; charset=gb2312"%>
<%@ page import="com.sx.mas.beans.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<LINK href="css/tree.css" href="css/tree.css" type=text/css rel=stylesheet>
<LINK href="css/css.css" href="css/css.css" rel=stylesheet>
<SCRIPT src="js/tree.js" src="js/tree.js" type=text/javascript></SCRIPT>
<title>My JSP 'index.jsp' starting page</title>
????<meta http-equiv="pragma" content="no-cache">
????<meta http-equiv="cache-control" content="no-cache">
????<meta http-equiv="expires" content="0">
????<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
????<meta http-equiv="description" content="This is my page">
????<!--
????<link rel="stylesheet" type="text/css" href="styles.css" href="styles.css">
????-->
</head>
<body onresize="return true;" leftMargin=1 topMargin=1>
????<table>
????????<tr>
????????????<td valign="top">
<TABLE class=table_left_menu cellSpacing=0 cellPadding=0 width="100%"
background=images/tree_bg.gif border=0>
<TBODY>
<TR>
<TD>
<DIV align=center><IMG height=24 src="images/tree_button.gif" src="images/tree_button.gif"
width=147 useMap=#Map border=0>
<MAP id=Map name=Map>
<AREA shape="RECT" shape="RECT" coords="16,3,69,15" coords="16,3,69,15" href="javascript:%20d.openAll()" href="javascript:%20d.openAll()">
<AREA shape="RECT" shape="RECT" coords="72,3,131,15" coords="72,3,131,15" href="javascript:%20d.closeAll()" href="javascript:%20d.closeAll()">
</MAP>
</DIV>
</TD>
</TR>
</TBODY>
</TABLE>
<SCRIPT type=text/javascript>
????????d = new tree('d','../');
????????<%
????????????TreeDAO treedao = new TreeDAO();
????????????Vector vec =treedao.getTree();
????????????Iterator iterator = vec.iterator();
????????????while(iterator.hasNext()){
????????????TreeNode treenode = (TreeNode)iterator.next();
????????????if(treenode.getIsleaf()==0){
????????%>
???????? d.add(<%=treenode.getTid()%>,<%=treenode.getPid()%>,'<%=treenode.getTname()%>')
???????? <%}else{%>
???????? d.add(<%=treenode.getTid()%>,<%=treenode.getPid()%>,'<%=treenode.getTname()%>',parent.getUrlByCatalogId('<%=treenode.getTid()%>'),null,'list');
???????? <%}}%>
document.write(d);
</SCRIPT>
????????????</td>
????????</tr>
????</table>
</body>
</html>


第八步:創建一個框架頁面,index.html代碼如下,和list_default.htm。

?

復制代碼 代碼如下:

?


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
<!-- saved from url=(0203)http://211.142.31.211:8050/cms/content/content_frame.jsp?eafplaceholder=1&staffId=11010000&ssessionId=A5704FD79B3367C9FBE67681C048CA6A×tamp=1240457326218&secret=649820873&menuId=10081&labelStyle=DLS -->
<HTML><HEAD><TITLE></TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312"><LINK href=""
type=text/css rel=stylesheet>
<SCRIPT type=text/javascript>
function getUrlByCatalogId(catalogId) {
return "TreeDemo/content_add.jsp?catalogId="+catalogId;
}
</SCRIPT>
<META content="MSHTML 6.00.2900.3527" name=GENERATOR></HEAD><FRAMESET border=0
frameSpacing=0 rows=* frameBorder=0>
<FRAMESET border=0 frameSpacing=1 frameBorder=0 cols=200,*>
<FRAME name=stree src="show_cat_tree.jsp" src="show_tree.jsp" scrolling=yes target="list">
<FRAME name=list src="list_default.htm" src="list_default.htm"><NOFRAMES>
<body>
</body>
</NOFRAMES></FRAMESET></FRAMESET></HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
<!-- saved from url=(0203)http://211.142.31.211:8050/cms/content/content_frame.jsp?eafplaceholder=1&staffId=11010000&ssessionId=A5704FD79B3367C9FBE67681C048CA6A×tamp=1240457326218&secret=649820873&menuId=10081&labelStyle=DLS -->
<HTML><HEAD><TITLE></TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312"><LINK href=""
type=text/css rel=stylesheet>
<SCRIPT type=text/javascript>
function getUrlByCatalogId(catalogId) {
return "TreeDemo/content_add.jsp?catalogId="+catalogId;
}
</SCRIPT>
<META content="MSHTML 6.00.2900.3527" name=GENERATOR></HEAD><FRAMESET border=0
frameSpacing=0 rows=* frameBorder=0>
<FRAMESET border=0 frameSpacing=1 frameBorder=0 cols=200,*>
<FRAME name=stree src="show_cat_tree.jsp" src="show_tree.jsp" scrolling=yes target="list">
<FRAME name=list src="list_default.htm" src="list_default.htm"><NOFRAMES>
<body>
</body>
</NOFRAMES></FRAMESET></FRAMESET></HTML>

?



第九步:運行效果
?

以上就是我們關于如何實現JSP動態樹的內容,看完后我們知道只需要在jsp頁面中包含js代碼就可以了。那么動態樹就需要javabean的支持了。?

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
久久中文字幕在线视频| 精品成人国产在线观看男人呻吟| 国内伊人久久久久久网站视频| 亚洲福利视频久久| 在线日韩中文字幕| 在线观看欧美www| 欧美精品情趣视频| 国产又爽又黄的激情精品视频| 91美女福利视频高清| 亚洲老司机av| 亚洲精品在线91| 午夜欧美不卡精品aaaaa| 亚洲自拍偷拍色图| 亚洲一区二区精品| 97欧美精品一区二区三区| 久久精品成人欧美大片古装| 亚洲一区二区自拍| 一区二区国产精品视频| 欧美乱妇高清无乱码| 欧美精品18videos性欧| 97久久伊人激情网| 亚洲精品女av网站| 中文字幕亚洲欧美日韩在线不卡| 中文在线资源观看视频网站免费不卡| 亚洲色图18p| 欧美成人免费全部观看天天性色| 亚洲精品久久7777777| 美女扒开尿口让男人操亚洲视频网站| 久久久精品电影| 97超级碰碰碰久久久| 久久久久久久久综合| 亚洲人成电影在线| 最好看的2019年中文视频| 亚洲成人动漫在线播放| 91久久久久久久久久久| 久久久在线视频| 在线中文字幕日韩| 91国自产精品中文字幕亚洲| 欧美视频在线看| 亚洲国产成人精品久久| 久久久综合免费视频| 国产精品久久久久久搜索| 成人激情视频在线播放| 欧美激情一区二区三区久久久| 欧美激情精品久久久久久变态| 欧美激情久久久久| 精品自拍视频在线观看| 国产精品久久97| 日本精品免费观看| 日韩av成人在线| 欧美性xxxx极品hd满灌| 亚洲精品一区二区在线| 精品在线小视频| 欧美在线视频免费播放| 亚洲女性裸体视频| 久久精品免费电影| 亚洲天堂av在线播放| 欧美激情手机在线视频| 热门国产精品亚洲第一区在线| 国产精品第七影院| 精品国产美女在线| 尤物精品国产第一福利三区| 久久久欧美一区二区| 日韩在线观看免费全集电视剧网站| 精品国产一区二区三区四区在线观看| 日本高清久久天堂| 亚洲精品大尺度| 国产999精品| 国产精品视频免费观看www| 欧美日韩免费区域视频在线观看| 欧美在线中文字幕| 日韩网站在线观看| 国产免费一区二区三区在线观看| 成人av.网址在线网站| 在线成人一区二区| 欧洲亚洲免费视频| 亚洲人av在线影院| 日韩欧美第一页| 亚洲国产精品中文| 亚洲欧美福利视频| 亚洲最新视频在线| 国产精品ⅴa在线观看h| 久久精品国产亚洲7777| 日韩在线观看成人| 亚洲激情视频网| 欧美夫妻性生活xx| 精品久久久久久电影| 成人黄色免费片| 成人啪啪免费看| 亚洲人成网站色ww在线| 国产成人精品在线播放| 久久九九精品99国产精品| 成人精品一区二区三区电影免费| 国产小视频国产精品| 成人国产精品av| 在线观看91久久久久久| 国产精品男人爽免费视频1| 久久久久亚洲精品成人网小说| 欧美精品激情blacked18| 国产精品v片在线观看不卡| 91免费欧美精品| 久久99久久99精品免观看粉嫩| 亚洲九九九在线观看| 亚洲免费视频在线观看| 亚洲福利视频在线| 久久久久久久爱| 欧美日韩国产在线播放| 久久久久中文字幕2018| 国产精品日韩在线播放| 最近2019中文字幕在线高清| 亚洲视频一区二区三区| 亚洲成人中文字幕| 欧美xxxwww| 成人激情视频网| 另类视频在线观看| 亚洲欧美一区二区激情| 亚洲一区二区三区乱码aⅴ| 国产精品ⅴa在线观看h| 欧美视频在线免费看| 午夜精品久久久久久久久久久久| 国产va免费精品高清在线| 国产亚洲精品日韩| 国产一区二区三区日韩欧美| 亚洲男人第一网站| 亚洲第一男人天堂| 亚洲综合中文字幕在线| 成人免费视频在线观看超级碰| 久久久久这里只有精品| 欧美夫妻性视频| 国产精品欧美一区二区三区奶水| 欧美精品xxx| 日韩久久午夜影院| 国产一区二区三区在线观看网站| 亚洲v日韩v综合v精品v| 欧美电影在线观看网站| 国产69精品久久久久9999| 中文字幕v亚洲ⅴv天堂| 中日韩美女免费视频网址在线观看| 国产丝袜一区二区三区| 91系列在线观看| 国产精品美女久久久久久免费| 国产精欧美一区二区三区| 成人xxxx视频| 久久影院中文字幕| 91网站在线看| 亚洲夜晚福利在线观看| 亚洲无线码在线一区观看| 日本道色综合久久影院| 成人网欧美在线视频| 色婷婷成人综合| 色偷偷91综合久久噜噜| 欧美视频13p| 欧美午夜丰满在线18影院| 日韩一级黄色av| 亚洲福利影片在线| 日产精品久久久一区二区福利| 中文字幕亚洲无线码a| 亚洲欧美999| 国产亚洲aⅴaaaaaa毛片| 中文字幕亚洲综合久久| 亚洲精品之草原avav久久| 综合136福利视频在线| 日韩精品极品视频免费观看| 97国产精品视频人人做人人爱|