📄 navigation.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -