📄 lastvisit.tag
字号:
<%-- 每周关注排行 --%>
<%@ tag pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<div id="LastVisit">
<div id="LastVisitHead">
最近浏览记录
</div>
<ul class="CPRLVList">
<li>
<table id="rpLastVisit" cellspacing="2" cellpadding="2" border="0"
style="width:100%;">
<tr>
<c:choose>
<c:when test="${not empty requestScope.lastviews}">
<c:forEach items="${requestScope.lastviews}" var="product">
<td>
<a href="productinfo.htm?pid=${product.id}" target="_blank">
<img src="pruductphoto.do?id=${product.id}&pid=0" width="70" height="80" alt="${product.name }"/>
</a>
<br />
</td>
</c:forEach>
</c:when>
<c:otherwise>
<td>暂无最近浏览记录</td>
</c:otherwise>
</c:choose>
</tr>
</table>
</li>
</ul>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -