📄 orderoptions_body.jsp
字号:
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %><%@ taglib prefix="s" uri="/struts-tags"%><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%><div id="content2"> <div id="breadCrumb"> <ul> <li><a title="主页" href="http://shanghai.rs-online.com/web/">主页</a></li> <li><a title="你的订购单" href="http://shanghai.rs-online.com/web/cart/shoppingCart.html">你的订购单</a></li> </ul> </div> <div style="clear: left;" class="sectionTab"> <h2 class="browseDt">订购: 第1步/ 共2步</h2> </div> <div style="border: 3px solid rgb(232, 232, 232); overflow: auto; clear: left;"> <form action="order.review.action" method="post" name="orderOptions"> <div style="margin: 5px 0px 0px 5px; font-size: 75%;"><span class="mandatoryLarge">*</span>为必要项目</div> <div class="orderOptionsSectionContainer"> <div id="despatch"> <h3>送货选择<span class="mandatory">*</span> </h3> <p> <input type="radio" value="2627959" checked="checked" name="despatchType"/> 常规运送 </p> </div> <div id="delivery"> <h3>送货地址<span class="mandatory">*</span></h3> <table width="99%" cellspacing="5" cellpadding="5" border="0"> <tbody> <tr> <c:forEach items="${sessionUser.deliveryAddresses}" var="item" varStatus="status"> <td valign="top" class="tdClass"> <address> <span class="radio"> <c:if test="${item.id == order.deliveryAddress.id}"> <input type="radio" checked="checked" value="${item.id }" name="order.deliveryAddress.id"/></span> </c:if> <c:if test="${item.id != order.deliveryAddress.id}"> <input type="radio" value="${item.id }" name="order.deliveryAddress.id"/></span> </c:if> <span class="content"> ${item.receiverName }<br/> ${item.address }<br/> ${item.postCode }<br/> ${item.phoneNumber } </span> <span class="link"> <a href="delivery-address-during-ordering-edit.input.action?deliveryAddress.id=${item.id }">更改</a> <a onclick="return confirmDelete('您确定要删除此送货地址吗?')" href="delivery-address-during-ordering-edit.delete.action?deliveryAddress.id=${item.id }">删除</a> </span> </address> </td> </c:forEach> </tr> </tbody> </table><div class="add"> <a title="新增送货地址" href="delivery-address-during-ordering-edit.input.action"> <img border="0" align="absmiddle" class="orderAddButton" alt="新增送货地址" src="../image/site/order/addAddress.gif"/> </a></div></div> </div> <div class="orderOptionsSectionContainer"> <script> function selectedCard(cardId){ if(cardId == '200'){ document.getElementById("showCustCostRef").style.visibility = "visible"; document.getElementById("showCustCost").style.visibility = "visible"; }else if(cardId =='201') { document.getElementById("showCustCostRef").style.visibility = "visible"; document.getElementById("showCustCost").style.visibility = "hidden"; }else{ document.getElementById("showCustCostRef").style.visibility = "hidden"; document.getElementById("showCustCost").style.visibility = "hidden"; } }</script> <div id="payment"> <h3>付款选择<span class="mandatory">*</span> </h3> <table width="99%" cellspacing="5" cellpadding="5" border="0"> <tbody> <tr> <c:forEach items="${paymentTypeList}" var="item" varStatus="status"> <td valign="top" class="tdClass"> <address> <span class="radio"> <c:if test="${item.id == order.paymentType.id}"> <input type="radio" checked="checked" name="order.paymentType.id" value="${item.id}"/> </c:if> <c:if test="${item.id != order.paymentType.id}"> <input type="radio" name="order.paymentType.id" value="${item.id}"/> </c:if> </span> <span class="content"> ${item.name} <br/> </span> <span> </span> </address> </td> </c:forEach> </tr> </tbody> </table> <div class="add"> </div> </div> </div> <div style="margin-bottom: 0.5%;" class="orderOptionsSectionContainer"> <script type="text/javascript" language="javascript">function restrictMaxLength(element, MaxLen) { var noOfChars = element.value.length; var enteredvalue=element.value; if(noOfChars > MaxLen){ element.value = enteredvalue.substring(0,MaxLen); }}</script> <div id="orderDetails"> <h3>订单详情</h3> <table cellspacing="0" cellpadding="0" border="0" class="OrdeRefTable"> <tbody><tr> <td>您的订单号码<span class="mandatory">*</span></td> <td class="OrderRefCell"> <input type="text" autocomplete="off" class="inputfields" value="" name="orderNo"/> </td> <td style="padding-left: 20px;">订单名称(只供内部填写) </td> <td><input type="text" class="inputfields" value="" name="orderName"/></td> </tr> <tr height="25" valign="top"> <td/> <td><span class="inputNote">这将列印于你的快递单据上</span></td> <td/> <td><span class="inputNote"> </span></td> </tr> <tr> <td valign="top">特别订单要求 </td> <td valign="top" colspan="3"> <textarea onkeyup="restrictMaxLength(this, '60');" onkeypress="restrictMaxLength(this, '60');" style="margin-bottom: 10px;" class="inputfields" autocomplete="off" rows="3" cols="30" name="order.note"> </textarea> </td> </tr> </tbody></table> </div> </div> <table width="99%" align="center"> <tbody> <tr> <td> <a title="Back to your product selection" href="http://shanghai.rs-online.com/web/cart/shoppingCart.html"><img border="0" src="https://shanghai.rs-online.com/cn03/img/site/order/backToCart.gif"/> </a> </td> <td align="right"><input type="hidden" value="false" name="mode"/> <input type="image" onclick="form.submit();return false;" title="继续并进行订单检查" src="../image/site//order/proceedToReview.gif"/> </td> </tr> </tbody></table> </form></div> </div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -