msg_success.jsp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"%>
  2. <%@ include file="/base.jsp"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <title>提示信息</title>
  7. <script type="text/javascript" >
  8. $().ready(function() {
  9. $("li>img").click(function (){
  10. var ra = $(this).prev(':radio');
  11. if(ra!=null){
  12. $(':radio').attr('checked',false);
  13. $(ra).attr('checked',true);
  14. }
  15. });
  16. });
  17. </script>
  18. </head>
  19. <body class="scrol">
  20. <div class="mb50">
  21. <section class="w1000">
  22. <div class="pathwray">
  23. <ol class="clearfix c-master f-fM fsize14">
  24. <li><a href="/" title="首页" class="c-master">首页</a> &gt;</li>
  25. <li><span>提示信息</span></li>
  26. </ol>
  27. </div>
  28. <!--提示信息-->
  29. <article class="mt30" id="order_success">
  30. <div class="order-table pb20" >
  31. <section class="mt20 mr20 mb20 ml20">
  32. <div class="orderSuccess pr ml20" >
  33. <ol>
  34. <li><h2 class="line3 pb10"><strong class="c-333 fsize18"><font class="ml5 mr5 c-orange" id="orderId_success">提示信息:</font>${msg}</strong></h2></li>
  35. <li class="mt20">
  36. <span class="c-333 fsize14">您可以:
  37. <span class="vam">
  38. <a class="order-submit" title="返回首页" href="${ctx }/">首页</a>
  39. <a class="order-submit" title="进入学习中心" href="${ctx }/uc/home">学习中心</a>
  40. <a class="order-submit" title="我的订单" href="${ctx }/uc/order">我的订单</a>
  41. </span>
  42. </span>
  43. </li>
  44. </ol>
  45. <span class="succIcon pa"></span>
  46. </div>
  47. </section>
  48. </div>
  49. </article>
  50. </section>
  51. </div>
  52. </body>
  53. </html>