汇联通执法队后台管理系统
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

view.jsp 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <%@ page contentType="text/html;charset=utf-8"%>
  3. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  4. <html>
  5. <head>
  6. <meta http-equiv="expires" content="0" />
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <script type="text/javascript">
  9. // $(function(){
  10. // $.ajaxSetup ({ cache: false});
  11. // $("#submit").click(function(){
  12. // $("#myManage").triggerHandler("taijiModalPost",[$("#myForm"),{table:"none"}]);
  13. // });
  14. // });
  15. </script>
  16. </head>
  17. <body>
  18. <div class="modal-header">
  19. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  20. <h4 class="modal-title">test--详情</h4>
  21. </div>
  22. <div class="modal-body">
  23. <table class="table table-striped table-bordered table-hover">
  24. <tr>
  25. <th>名称</th>
  26. <td>${pageModel.name }</td>
  27. </tr>
  28. <tr>
  29. <th>年龄</th>
  30. <td>${pageModel.age }</td>
  31. </tr>
  32. <tr>
  33. <th>性别</th>
  34. <td>${pageModel.gender }</td>
  35. </tr>
  36. </table>
  37. </div>
  38. <div class="modal-footer">
  39. <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
  40. <a href="#" class="btn btn-sm btn-success" id="submit">保存</a>
  41. </div>
  42. </body>
  43. </html>