| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="pragma" content="no-cache" />
- <script src="./jquery.min.js"></script>
- <script>
- $.getScript('./describe.js?rd=' + Math.random()).then(function() {
- var describe = new Describe();
- describe.load();
- }).catch( function() {
- alert('get describe error.');
- });
- </script>
- </head>
- <body style="font-size: 12px; font-family: Microsoft Yahei; margin: 0px">
- <table style="width: 1800px; margin: 0 auto">
- <tr>
- <td style="width: 350px;" valign="top">
- <fieldset>
- <legend>Menu</legend>
- <div id="menu" style="height: 850px; overflow: auto"> </div>
- </fieldset>
- </td>
- <td valign="top">
- <fieldset>
- <legend>Content</legend>
- <div id="content"
- style="white-space: pre; font-size: 12px; word-break: break-all; word-wrap: break-word"> </div>
- </fieldset>
- <fieldset>
- <legend>Result</legend>
- <div id="result"
- style="white-space: pre; font-size: 12px; word-break: break-all; word-wrap: break-word; width: 1400px"> </div>
- </fieldset>
- </td>
- </tr>
- </table>
- </body>
- </html>
|