46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<!DOCTYPE HTML>
|
|
<html lang="zh-CN">
|
|
<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"></script>
|
|
<script src="../../ueditor.parse.min.js"></script>
|
|
<title></title>
|
|
</head>
|
|
<body class="view">
|
|
<div id="preview" style="margin:8px">
|
|
|
|
</div>
|
|
</body>
|
|
<script>
|
|
// 调整index来保证不被父级页面挡住
|
|
parent.document.getElementById('edui_fixedlayer').style.zIndex = 1888;
|
|
document.getElementById('preview').innerHTML = editor.getContent();
|
|
uParse('#preview', {
|
|
rootPath: '../../',
|
|
chartContainerHeight: 500
|
|
})
|
|
dialog.oncancel = function () {
|
|
document.getElementById('preview').innerHTML = '';
|
|
}
|
|
</script>
|
|
</html> |