cart.jsp

来自「webwork source」· JSP 代码 · 共 47 行

JSP
47
字号
<%@ taglib uri="webwork" prefix="webwork" %><webwork:property value="cart/items"><webwork:if test=".">	 <center> 	 <table border="0" cellpadding="0" width="100%" bgcolor='<webwork:text name="'cart.bgcolor'"/>'>	 <tr>		<td><b><webwork:text name="'cd.albumLabel'"/></b></td>		<td><b><webwork:text name="'cd.artistLabel'"/></b></td>		<td><b><webwork:text name="'cd.countryLabel'"/></b></td>		<td><b><webwork:text name="'cd.priceLabel'"/></b></td>      <td><b><webwork:text name="'cd.quantityLabel'"/></b></td>		<td></td>	</tr><webwork:action name="'i18n.ComputePrice'" id="pricer"/><webwork:iterator>	<tr>      <webwork:property value="cd">		<td><b><webwork:property value="album"/></b></td>		<td><b><webwork:property value="artist"/></b></td>		<td><b><webwork:property value="country"/></b></td>		<td><b><webwork:text name="'price'" value0="@pricer/computePrice(price)"/></b></td>		</webwork:property>		<td><b><webwork:property value="quantity"/></b></td>		<td>			<form action="i18n.Delete.action" method="post">			  <input type=submit value='<webwork:text name="'cart.delLabel'"/>'>			  <input type=hidden name="album" value='<webwork:property value="cd/album"/>'>			</form>		</td>	</tr></webwork:iterator>   </table>	<p>	<p>	<form action="i18n.Checkout.action"  method="post">        <input type="submit" value='<webwork:text name="'cart.checkoutLabel'"/>'>   </form>  </center></webwork:if></webwork:property>

⌨️ 快捷键说明

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