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