📄 item.jsp
字号:
<%@ include file="IncludeTop.jsp" %>
<table align="left" bgcolor="#008800" border="0" cellspacing="2" cellpadding="2">
<tr><td bgcolor="#FFFF88">
<a href="<c:url value="/shop/viewProduct.do"><c:param name="productId" value="${product.productId}"/></c:url>">
<b><font color="BLACK" size="2"><< <c:out value="${product.name}"/></font></b>
</a>
</td></tr>
</table>
<p>
<table align="center" bgcolor="#008800" cellspacing="2" cellpadding="3" border="0" width="60%">
<tr bgcolor="#FFFF88">
<td bgcolor="#FFFFFF">
<c:out value="${product.description}" escapeXml="false"/>
</td>
</tr>
<tr bgcolor="#FFFF88">
<td width="100%" bgcolor="#cccccc">
<b><c:out value="${item.itemId}"/></b>
</td>
</tr><tr bgcolor="#FFFF88">
<td>
<b><font size="4">
<c:out value="${item.attribute1}"/>
<c:out value="${item.attribute2}"/>
<c:out value="${item.attribute3}"/>
<c:out value="${item.attribute4}"/>
<c:out value="${item.attribute5}"/>
<c:out value="${product.name}"/>
</font></b>
</td></tr>
<tr bgcolor="#FFFF88"><td>
<font size="3"><i><c:out value="${product.name}"/></i></font>
</td></tr>
<tr bgcolor="#FFFF88"><td>
<c:if test="${item.quantity <= 0}">
<font color="RED" size="2"><i>Back ordered.</i></font>
</c:if>
<c:if test="${item.quantity > 0}">
<font size="2"><fmt:formatNumber value="${item.quantity}"/> in stock.</font>
</c:if>
</td></tr>
<tr bgcolor="#FFFF88"><td>
<fmt:formatNumber value="${item.listPrice}" pattern="$#,##0.00" />
</td></tr>
<tr bgcolor="#FFFF88"><td>
<a href="<c:url value="/shop/addItemToCart.do"><c:param name="workingItemId" value="${item.itemId}"/></c:url>">
<img border="0" src="../images/button_add_to_cart.gif"/>
</a>
</td></tr>
</table>
<%@ include file="IncludeBottom.jsp" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -