saletop.tag

来自「一个网上购物商城系统」· TAG 代码 · 共 27 行

TAG
27
字号
<%-- 每周销售排行 --%>
<%@ tag pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<div id="SaleTop">
	<div id="SaleTopHead">
		每周销售排行
	</div>
	<ul class="CPRList">
		<c:choose>
			<c:when test="${not empty requestScope.saleproducts}">
				<c:forEach items="${requestScope.saleproducts}" var="product" varStatus="s">
					<li>
						<c:if test="${s.index==0}">
							<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 />
						</c:if>
						<a href="productinfo.htm?pid=${product.id}" target="_blank"> ${s.index+1}. ${product.name}</a>
					</li>
				</c:forEach>
			</c:when>
			<c:otherwise>
				<li>暂无每周销售排行</li>
			</c:otherwise>
		</c:choose>

	</ul>
</div>

⌨️ 快捷键说明

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