postlist.tag

来自「基于struts+hibernate的电子商务网站。可运行。数据库mysql」· TAG 代码 · 共 23 行

TAG
23
字号
<%-- 帖子树形列表 --%>
<%@ tag pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<div id="bbs-list-nav" style="margin-top:8px;">
	<div id="bbs-title">
		<h2>标题: ${requestScope.topic.title }</h2>
	</div>
	<div id="bbs-plate-nav">
		<ul id="note">
		<c:forEach items="${requestScope.posts}" var="post">
		<li>
			<span>
				·<a href="ctree.htm?pid=${post.id }&tid=${param['tid'] }">
					<span class="bold">${post.content }</span>
				</a>
			</span>
			<span>&nbsp; &nbsp; <a href="#">${post.user.username }</a></span>
			<span>发表于 ${post.sendtime }</span>
		</li>
		</c:forEach>
	</div>
</div>

⌨️ 快捷键说明

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