📄 dir_sub.jsp
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
<%@ page import="java.io.InputStream" %>
<%@ page import="java.util.*" %>
<%@ page import="cn.js.fan.db.*" %>
<%@ page import="cn.js.fan.util.*" %>
<%@ page import="cn.js.fan.module.cms.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无限级目录</title>
<LINK href="../common.css" type=text/css rel=stylesheet>
<LINK href="default.css" type=text/css rel=stylesheet>
<script>
function findObj(theObj, theDoc)
{
var p, i, foundObj;
if(!theDoc) theDoc = document;
if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
{
theDoc = parent.frames[theObj.substring(p+1)].document;
theObj = theObj.substring(0,p);
}
if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
for (i=0; !foundObj && i < theDoc.forms.length; i++)
foundObj = theDoc.forms[i][theObj];
for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++)
foundObj = findObj(theObj,theDoc.layers[i].document);
if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
return foundObj;
}
function ShowChild(imgobj, name)
{
var tableobj = findObj("childof"+name);
if (tableobj.style.display=="none")
{
tableobj.style.display = "";
if (imgobj.src.indexOf("i_puls-root-1.gif")!=-1)
imgobj.src = "images/i_puls-root.gif";
if (imgobj.src.indexOf("i_plus-1-1.gif")!=-1)
imgobj.src = "images/i_plus2-2.gif";
if (imgobj.src.indexOf("i_plus-1.gif")!=-1)
imgobj.src = "images/i_plus2-1.gif";
}
else
{
tableobj.style.display = "none";
if (imgobj.src.indexOf("i_puls-root.gif")!=-1)
imgobj.src = "images/i_puls-root-1.gif";
if (imgobj.src.indexOf("i_plus2-2.gif")!=-1)
imgobj.src = "images/i_plus-1-1.gif";
if (imgobj.src.indexOf("i_plus2-1.gif")!=-1)
imgobj.src = "images/i_plus-1.gif";
}
}
</script>
</head>
<body>
<jsp:useBean id="privilege" scope="page" class="com.fan.redmoon.Privilege"/>
<%
if (!privilege.isAdmin(request))
{
out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
return;
}
%>
<%
String root_code = ParamUtil.get(request, "root_code");
if (root_code.equals(""))
{
root_code = "root";
}
Directory dir = new Directory();
Leaf rootleaf = dir.getLeaf(root_code);
String root_name = rootleaf.getName();
%>
<table width='100%' cellpadding='0' cellspacing='0' >
<tr>
<td class="head">管理 <%=root_name%> <a href="dir_sub_all.jsp?root_code=<%=StrUtil.UrlEncode(root_code)%>">简单模式</a></td>
</tr>
</table>
<br>
<TABLE class="frame_gray"
cellSpacing=0 cellPadding=0 width="95%" align=center>
<TBODY>
<TR>
<TD height=200 valign="top" bgcolor="#FFFBFF">
<%
DirectoryView tv = new DirectoryView(rootleaf);
tv.list(out);
%>
</TD>
</TR>
</TBODY>
</TABLE>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -