| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="pragma" content="no-cache" />
- <script src="./jquery.min.js"></script>
- <script src="./clipboard.min.js"></script>
- <script>
- $.getScript('./describe.js?rd=' + Math.random()).then(function() {
- var describe = new Describe();
- describe.load();
- }).catch( function() {
- alert('get describe error.');
- });
-
- $(document).ready(function(){
- var clipboard = new Clipboard("#btn");
- });
- </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 <a href="javascript:" data-clipboard-target="#result">copy</a>
- </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>
|