announces.tag

来自「struts+spring+hibernate例子」· TAG 代码 · 共 21 行

TAG
21
字号
<%-- 公告 --%>
<%@ tag pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<div id="ImageShow">
<ul class="AnnounceListStyle">
<c:choose>
    <c:when test="${not empty requestScope.announces}">
	<c:forEach items="${announces}" var="ann">
		<li>
		<img src="images/icon/post_hit.gif" />
		<a href="announce.htm?aid=${ann.id}">
		<font color="${ann.titlecolor }">${ann.atype}${ann.title}</font>
		</a>
		</li>
	</c:forEach>
	</c:when>
	<c:otherwise><li>暂无公告!</li></c:otherwise>
</c:choose>
</ul>
</div>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?