-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
298 lines (250 loc) · 10.4 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>原UEditor(百度编辑器) 二次开发 (微信公众号图文编辑器)</title>
<script src="./muguilin/jquery-3.4.0.min.js"></script>
<script src="./muguilin/cropper.min.js"></script>
<!-- 样式和配置 -->
<link href="./muguilin/muditor.base.css" rel="stylesheet" />
<script src="./muguilin/muditor.config.js"></script>
<!-- ueditor -->
<script src="./ueditor.config.js"></script>
<script src="./ueditor.all.js"></script>
<script src="./lang/zh-cn/zh-cn.js"></script>
<!-- xiumi -->
<script src="./xiumi/xiumi-ue-dialog-v5.js"></script>
<style>
.h1 {
text-align: center;
line-height: 80px;
color: #0091f2;
}
.h3 {
text-align: center;
line-height: 40px;
color: red;
}
.editor-box {
margin: 50px auto;
width: 1040px;
height: 500px;
}
.editor-box .editor {
width: 100%;
min-height: 600px;
}
.btn-box {
position: fixed;
top: 80px;
right: 80px;
box-sizing: border-box;
width: 200px;
height: 850px;
border-radius: 4px;
border: 1px solid gray;
overflow-y: scroll;
background: rgba(255, 255, 255, 0.5);
}
.btn-box button {
display: block;
margin: 10px;
width: 90%;
line-height: 32px;
font-size: 15px;
background: #0091f2;
color: white;
cursor: pointer;
border: none;
}
</style>
</head>
<body>
<h1 class="h1">原UEditor(百度编辑器) 二次开发 (微信公众号图文编辑器)</h1>
<h3 class="h3">温馨提示:代码要放在PHP服务环境(如:PhPStudy、WAMP等)下打开,部份功能才可以正常使用哦!</h3>
<hr>
<section class="editor-box">
<script id="editor" class="editor" type="text/plain"></script>
</section>
<section id="btn-box" class="btn-box">
<button onclick="getAllHtml()">获得整个html的内容</button>
<button onclick="getContent()">获得内容带标签</button>
<button onclick="getContentTxt()">获得纯文本</button>
<button onclick="getPlainTxt()">获得带格式的纯文本</button>
<button onclick="MU.ExtractTextImage()">获取正文中的图片</button>
<button onclick="hasContent()">判断是否有内容</button>
<button onclick="setContent()">写入内容</button>
<button onclick="setContent(true)">追加内容</button>
<button onclick="setFocus()">使编辑器获得焦点</button>
<button onmousedown="isFocus(event)">编辑器是否获得焦点</button>
<button onmousedown="setblur(event)">编辑器失去焦点</button>
<button onclick="getText()">获得当前选中的文本</button>
<button onclick="insertHtml()">插入给定的内容</button>
<button onclick="setEnabled()" id="enable">可以编辑</button>
<button onclick="setDisabled()">不可编辑</button>
<button onclick="UE.getEditor('editor').setHide()">隐藏编辑器</button>
<button onclick="UE.getEditor('editor').setShow()">显示编辑器</button>
<button onclick="UE.getEditor('editor').setHeight(300)">设置高度为300</button>
<button onclick="getLocalData()">获取草稿箱内容</button>
<button onclick="clearLocalData()">清空草稿箱</button>
<button onclick="createEditor()">创建编辑器</button>
<button onclick="deleteEditor()">删除编辑器</button>
<button onclick="window.scrollTo(0, 0)">回到顶部</button>
</section>
<script type="text/javascript">
//实例化编辑器
//建议使用工厂方法getEditor创建和引用编辑器实例,如果在某个闭包下引用该编辑器,直接调用UE.getEditor('editor')就能拿到相关的实例
//编辑器初始化
MU.ueditor = UE.getEditor('editor');
//监听是否全屏
MU.ueditor.addListener('beforefullscreenchange', function (event, isFullScreen) {
if (!isFullScreen) {
MU.setTimeout(function () {
$('#editor .edui-editor-iframeholder').css('width', '100%');
}, 10);
}
});
//内容改变时自动保存
var iTems = 60;
MU.ueditor.addListener("contentChange", function (i) {
if (!$('#auto-save-time').attr('title')) $('#auto-save-time').attr('title', '正文内容被修改后,在1分钟后自动保存!');
if (60 == iTems) {
clearInterval(win_time);
win_time = setInterval(function () {
if (1 >= iTems) {
clearInterval(win_time);
$('#auto-save-time').text('已自动保存').fadeIn();
MU.setTimeout(function () {
$('#auto-save-time').fadeOut();
}, 10000);
iTems = 60;
//在这里写保存的方法 $.ajax() 、 Axios() 等等
} else {
iTems--;
};
// console.log(iTems);
}, 1000);
};
});
//正文中图片裁切
$(document.body).on('click', '#selectTextImages img', function () {
MU.getImgBase64($(this).attr('src'), function (base64) {
alert(base64);
if (MU.AlertThis) MU.AlertThis.RemoveAlert();
$('#cropper-box').animate({ top: '-50%' }, '2000');
$('.mask').hide();
});
});
function isFocus(e) {
alert(UE.getEditor('editor').isFocus());
UE.dom.domUtils.preventDefault(e);
};
function setblur(e) {
UE.getEditor('editor').blur();
UE.dom.domUtils.preventDefault(e);
};
function insertHtml() {
var value = prompt('插入html代码', '');
UE.getEditor('editor').execCommand('insertHtml', value);
};
function createEditor() {
enableBtn();
UE.getEditor('editor');
};
function getAllHtml() {
alert(UE.getEditor('editor').getAllHtml())
}
function getContent() {
var arr = [];
arr.push("使用editor.getContent()方法可以获得编辑器的内容");
arr.push("内容为:");
arr.push(UE.getEditor('editor').getContent());
alert(arr.join("\n"));
};
function getPlainTxt() {
var arr = [];
arr.push("使用editor.getPlainTxt()方法可以获得编辑器的带格式的纯文本内容");
arr.push("内容为:");
arr.push(UE.getEditor('editor').getPlainTxt());
alert(arr.join('\n'));
};
function setContent(isAppendTo) {
var arr = [];
arr.push("使用editor.setContent('欢迎使用ueditor')方法可以设置编辑器的内容");
UE.getEditor('editor').setContent('欢迎使用ueditor', isAppendTo);
alert(arr.join("\n"));
};
function setDisabled() {
UE.getEditor('editor').setDisabled('fullscreen');
disableBtn("enable");
};
function setEnabled() {
UE.getEditor('editor').setEnabled();
enableBtn();
};
function getText() {
//当你点击按钮时编辑区域已经失去了焦点,如果直接用getText将不会得到内容,所以要在选回来,然后取得内容
var range = UE.getEditor('editor').selection.getRange();
range.select();
var txt = UE.getEditor('editor').selection.getText();
alert(txt);
};
function getContentTxt() {
var arr = [];
arr.push("使用editor.getContentTxt()方法可以获得编辑器的纯文本内容");
arr.push("编辑器的纯文本内容为:");
arr.push(UE.getEditor('editor').getContentTxt());
alert(arr.join("\n"));
};
function hasContent() {
var arr = [];
arr.push("使用editor.hasContents()方法判断编辑器里是否有内容");
arr.push("判断结果为:");
arr.push(UE.getEditor('editor').hasContents());
alert(arr.join("\n"));
};
function setFocus() {
UE.getEditor('editor').focus();
};
function deleteEditor() {
disableBtn();
UE.getEditor('editor').destroy();
};
function disableBtn(str) {
var div = document.getElementById('btn-box');
var btns = UE.dom.domUtils.getElementsByTagName(div, "button");
for (var i = 0, btn; btn = btns[i++];) {
if (btn.id == str) {
UE.dom.domUtils.removeAttributes(btn, ["disabled"]);
} else {
btn.setAttribute("disabled", "true");
}
}
};
function enableBtn() {
var div = document.getElementById('btn-box');
var btns = UE.dom.domUtils.getElementsByTagName(div, "button");
for (var i = 0, btn; btn = btns[i++];) {
UE.dom.domUtils.removeAttributes(btn, ["disabled"]);
}
};
function getLocalData() {
alert(UE.getEditor('editor').execCommand("getlocaldata"));
};
function clearLocalData() {
UE.getEditor('editor').execCommand("clearlocaldata");
alert("已清空草稿箱")
};
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?3ea0f7822148e1af78476d18abbb687a";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>