navigation.jsp
来自「Jaoso新闻文章发布系统 0.9.1final 程序架构: Struts」· JSP 代码 · 共 36 行
JSP
36 行
<%@ include file = "../tiles/include.jsp"%>
<%
/**
* Navigation
* @author Edgeloner
* 2004-07-01 created
*/
%>
<bean:define id="title">
<bean:message key="article.navigation"/>
</bean:define>
<center>
<gui:window title="<%=title%>" prototype="boWindow" color="100%">
<table width="100%" cellspacing="0" cellpadding="0">
<logic:present name="catalogs" scope="request">
<logic:iterate name="catalogs" id="catalog">
<tr class="tdbg-dark">
<td><span class="bullet1"> </span><a href="viewCatalog.do?method=viewCatalog&catalogId=<bean:write name="catalog" property="catalogId" />" ><bean:write name="catalog" property="catalogTitle" /></a></td>
</tr>
<%if(((jaoso.news.domain.Catalog)catalog).getChildren().size()>0){%>
<tr>
<td><span class="bullet"> </span>
<logic:iterate name="catalog" property="children" id="child">
[<a href="viewCatalog.do?method=viewCatalog&catalogId=<bean:write name="child" property="catalogId" />" ><bean:write name="child" property="catalogTitle" /></a>]
</logic:iterate>
</td>
</tr>
<%}%>
</logic:iterate>
</logic:present>
</table>
</gui:window>
</center>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?