📄 saleproducts.tag
字号:
<%-- 本周商品排行 --%>
<%@ tag pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<div id="ChangXiao">
<div class="ProductHead">本周畅销商品排行</div>
<div class="ProductList">
<c:choose>
<c:when test="${not empty requestScope.saleproducts}">
<c:forEach items="${requestScope.saleproducts}" var="product" varStatus="s" begin="0" end="2">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="DefaultHotTable" align="center">
<tr>
<td rowspan="3" width="80" class="DefaultHotTableTD">
<a href="productinfo.htm?pid=${product.id }" target="_blank"> <img src='productphoto.do?id=${product.id}&pid=0' border="0" width="70" height="70" title='${product.name }' /></a>
</td>
<td width="60" align="right" class="DefaultHotTableTD"> 商品名称:</td>
<td class="DefaultHotTableTD"> <a href="productinfo.htm?pid=${product.id}" target="_blank"> ${product.name}</a></td>
</tr>
<tr>
<td width="60" align="right" class="DefaultHotTableTD"> 商品价格:</td>
<td class="DefaultHotTableTD"> ${product.price}</td>
</tr>
<tr>
<td width="60" align="right" class="DefaultHotTableTD"> 关注次数:</td>
<td class="DefaultHotTableTD" style="color:red"> ${product.viewpopluarity}</td>
</tr>
</table>
</c:forEach>
<ul class="TopProductListStyle">
<c:forEach items="${requestScope.saleproducts}" var="product" varStatus="s" begin="3">
<li> ${s.index+1}.
<a href="productinfo.htm?pid=${product.id}" target="_blank">${product.name}</a> <span>[${product.viewpopluarity}]</span>
</li>
</c:forEach>
</ul>
</c:when>
<c:otherwise>
暂无本周畅销商品排行!
</c:otherwise>
</c:choose>
</div>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -