| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>x_bbs_assemble_control</title>
- <script src="./jest_common.js"></script>
- <script src="./jest_jquery.js"></script>
- <script lang="text/javascript">
- function loadServiceHtml( a ){
- var htmlName = null;
- if( a != undefined ){
- htmlName = $(a).attr("id") + ".html" ;
- }
- if( htmlName != null ){
- $("#main_content").load( htmlName );
- }
- }
-
- $(document).ready(function() {});
-
- </script>
- </head>
- <body style="margin: 0; font-size: 1.0em; font-family: Microsoft Yahei">
- <div id="container" style="width: 1000px; margin: 0 auto;">
- <div id="header" style="background-color: #4682B4; clear: both; text-align: center;">
- 系统服务API说明
- </div>
- <div id="menu" style="background-color: #B0E0E6; height: 950px; width: 280px; float: left;">
- <ul>
- <li>REST服务调用
- <ul>
- <li>
- <a id="common_rest" href="javascript:void(0)" onclick="loadServiceHtml(this)">
- REST
- </a>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <div id="main_content" style="float: left; width: 720px;"></div>
- <div id="footer" style="background-color: #4682B4; clear: both; text-align: center; display: none"> Copyright © x</div>
- </div>
- </body>
- </html>
|