index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="pragma" content="no-cache" />
  6. <script src="./jquery.min.js"></script>
  7. <script>
  8. $.getScript('./describe.js?rd=' + Math.random()).then(function() {
  9. var describe = new Describe();
  10. describe.load();
  11. }).catch( function() {
  12. alert('get describe error.');
  13. });
  14. </script>
  15. </head>
  16. <body style="font-size: 12px; font-family: Microsoft Yahei; margin: 0px">
  17. <table style="width: 1800px; margin: 0 auto">
  18. <tr>
  19. <td style="width: 350px;" valign="top">
  20. <fieldset>
  21. <legend>Menu</legend>
  22. <div id="menu" style="height: 850px; overflow: auto">&nbsp;</div>
  23. </fieldset>
  24. </td>
  25. <td valign="top">
  26. <fieldset>
  27. <legend>Content</legend>
  28. <div id="content"
  29. style="white-space: pre; font-size: 12px; word-break: break-all; word-wrap: break-word">&nbsp;</div>
  30. </fieldset>
  31. <fieldset>
  32. <legend>Result</legend>
  33. <div id="result"
  34. style="white-space: pre; font-size: 12px; word-break: break-all; word-wrap: break-word; width: 1400px">&nbsp;</div>
  35. </fieldset>
  36. </td>
  37. </tr>
  38. </table>
  39. </body>
  40. </html>