⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postlist.tag

📁 基于struts+hibernate的电子商务网站。可运行。数据库mysql
💻 TAG
字号:
<%-- 帖子树形列表 --%>
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -