12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <%@ page contentType="text/html;charset=utf-8"%>
- <%@ include file="/WEB-INF/jsp/include.jsp"%>
- <html>
- <head>
- <meta http-equiv="expires" content="0" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <script type="text/javascript">
- // $(function(){
- // $.ajaxSetup ({ cache: false});
- // $("#submit").click(function(){
- // $("#myManage").triggerHandler("taijiModalPost",[$("#myForm"),{table:"none"}]);
- // });
- // });
- </script>
- </head>
- <body>
-
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
- <h4 class="modal-title">test--详情</h4>
- </div>
-
- <div class="modal-body">
- <table class="table table-striped table-bordered table-hover">
- <tr>
- <th>名称</th>
- <td>${pageModel.name }</td>
- </tr>
- <tr>
- <th>年龄</th>
- <td>${pageModel.age }</td>
- </tr>
- <tr>
- <th>性别</th>
- <td>${pageModel.gender }</td>
- </tr>
- </table>
- </div>
- <div class="modal-footer">
- <a href="#" class="btn btn-sm btn-white" data-dismiss="modal">关闭</a>
- <!-- <a href="#" class="btn btn-sm btn-success" id="submit">保存</a> -->
- </div>
-
- </body>
- </html>
|