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

📄 hotforum.tag

📁 网上购物系统
💻 TAG
字号:
<%-- 热门分类、品牌 --%>
<%@ tag pageEncoding="UTF-8" isELIgnored="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<div id="HotForumHead">
</div>
<div id="HotForumTab">
	<div id="HotForumCategory">分类</div>
	<div id="HotForumBrand">品牌</div>
</div>
<div>
	<div class="HotForumList">
		<ul>
			<c:choose>
				<c:when test="${not empty requestScope.topcategorys}">
					<c:forEach items="${requestScope.topcategorys}" var="category" varStatus="c">
						<li><img src="templates/default/images/num/no${c.index+1}.gif" /><a href="category.htm?cid=${category.id}" target="_blank">${category.name }</a></li>
					</c:forEach>
				</c:when>
				<c:otherwise>
					<li>暂无热门分类!</li>
				</c:otherwise>
			</c:choose>
		</ul>

	</div>
	<div class="HotForumList">

		<ul>
			<c:choose>
				<c:when test="${not empty requestScope.topbrands}">
					<c:forEach items="${requestScope.topbrands}" var="brand" varStatus="b">
						<li><img src="templates/default/images/num/no${b.index+1}.gif" /><a href="brand.htm?bid=${brand.id}" target="_blank">${brand.en_name}${brand.cn_name}</a></li>
					</c:forEach>
				</c:when>
				<c:otherwise>
					<li>暂无热门品牌!</li>
				</c:otherwise>
			</c:choose>
		</ul>
	</div>
</div>
	

⌨️ 快捷键说明

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