preview.html 938 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <style>
  7. html, body {
  8. height: 100%;
  9. width: 100%;
  10. padding: 0;
  11. margin: 0;
  12. }
  13. #preview {
  14. width: 100%;
  15. height: 100%;
  16. padding: 0;
  17. margin: 0;
  18. }
  19. #preview * {
  20. font-family: sans-serif;
  21. font-size: 16px;
  22. }
  23. </style>
  24. <script type="text/javascript" src="../internal.js"></script>
  25. <script src="../../ueditor.parse.js"></script>
  26. <title></title>
  27. </head>
  28. <body class="view">
  29. <div id="preview" style="margin: 8px"></div>
  30. </body>
  31. <script>
  32. document.getElementById('preview').innerHTML = editor.getContent();
  33. uParse('#preview',{
  34. rootPath : '../../',
  35. chartContainerHeight:500
  36. })
  37. dialog.oncancel = function(){
  38. document.getElementById('preview').innerHTML = '';
  39. }
  40. </script>
  41. </html>