1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 11:58:41 +08:00
xiaochong0302 e24cf1bd1c 1.调整编辑器条目
2.增加代码块复制
2024-04-28 21:17:36 +08:00

35 lines
992 B
JavaScript

layui.use(['jquery'], function () {
var $ = layui.jquery;
var editor;
var options = {
uploadJson: '/upload/content/img',
cssPath: '/static/home/css/content.css',
width: '100%',
height: '300px',
items: [
'selectall', '|',
'undo', 'redo', '|',
'formatblock', 'formatblock', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'strikethrough', 'removeformat', '|',
'insertorderedlist', 'insertunorderedlist', 'table', 'code', '|',
'superscript', 'subscript', '|',
'image', 'link', 'unlink', '|',
'source', 'about'
],
pasteType: 1,
extraFileUploadParams: {
csrf_token: $('meta[name="csrf-token"]').attr('content')
}
};
KindEditor.ready(function (K) {
editor = K.create('#editor-textarea', options);
});
$('.kg-submit').on('click', function () {
editor.sync();
});
});