plainpaste.html 885 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <title>PlainPaste</title>
  6. <style type="text/css" rel="stylesheet">
  7. html, body {
  8. padding: 0;
  9. margin: 0;
  10. font-size:12px;
  11. background-color:#F0F0EE;
  12. }
  13. #textArea {
  14. width:390px;
  15. height:250px;
  16. border:1px solid #000000;
  17. overflow: auto;
  18. }
  19. </style>
  20. <script type="text/javascript">
  21. var KE = parent.KE;
  22. location.href.match(/\?id=([\w-]+)/i);
  23. var id = RegExp.$1;
  24. KE.event.ready(function() {
  25. KE.util.hideLoadingPage(id);
  26. }, window, document);
  27. </script>
  28. </head>
  29. <body>
  30. <div style="margin-bottom:10px;">请使用快捷键(Ctrl+V)把内容粘贴到下面的方框里。</div>
  31. <textarea id="textArea"></textarea>
  32. </body>
  33. </html>