lastreplyposts.tag
来自「基于struts+hibernate的电子商务网站。可运行。数据库mysql」· TAG 代码 · 共 32 行
TAG
32 行
<%-- 最后回复的5个贴子 --%>
<%@ tag pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!----最后回复 area start---->
<div id="bbs-list-nav" style="margin-top:8px;">
<div id="bbs-title">
<h2>最后5帖</h2>
</div>
<div id="bbs-plate-nav">
<ul id="note">
<c:forEach items="${requestScope.posts}" var="post">
<li>
<span>
<strong>来自:${post.user.username }</strong>
</span>
<span>
<strong>回复日期:</strong> ${post.sendtime }
</span>
<strong>内容:</strong>
<script type="text/javascript"> <!-- document.write(stringToSmaile(${post.content })); //--> </script>
${post.content }
</li>
</c:forEach>
</ul>
</div>
</div>
<!----最后回复 area end---->
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?