index.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>x_bbs_assemble_control</title>
  6. <script src="./jest_common.js"></script>
  7. <script src="./jest_jquery.js"></script>
  8. <script lang="text/javascript">
  9. function loadServiceHtml( a ){
  10. var htmlName = null;
  11. if( a != undefined ){
  12. htmlName = $(a).attr("id") + ".html" ;
  13. }
  14. if( htmlName != null ){
  15. $("#main_content").load( htmlName );
  16. }
  17. }
  18. $(document).ready(function() {});
  19. </script>
  20. </head>
  21. <body style="margin: 0; font-size: 1.0em; font-family: Microsoft Yahei">
  22. <div id="container" style="width: 1000px; margin: 0 auto;">
  23. <div id="header" style="background-color: #4682B4; clear: both; text-align: center;">
  24. 系统服务API说明
  25. </div>
  26. <div id="menu" style="background-color: #B0E0E6; height: 950px; width: 280px; float: left;">
  27. <ul>
  28. <li>REST服务调用
  29. <ul>
  30. <li>
  31. <a id="common_rest" href="javascript:void(0)" onclick="loadServiceHtml(this)">
  32. REST
  33. </a>
  34. </li>
  35. </ul>
  36. </li>
  37. </ul>
  38. </div>
  39. <div id="main_content" style="float: left; width: 720px;"></div>
  40. <div id="footer" style="background-color: #4682B4; clear: both; text-align: center; display: none"> Copyright © x</div>
  41. </div>
  42. </body>
  43. </html>