管理员
站长QQ:515138
- 主题
- 124
- 回帖
- 7
- 在线时间
- 76 小时
- 注册时间
- 2024-2-3
- 最后登录
- 2024-11-14
|
cherry-markdown编辑器前端调用代码
- <script>
- /* 编辑器调用 */
- new Cherry({
- id: 'markdown-container',
- value: '## hello world',
- fileUpload: function(file, callback){
- var formData = new FormData();
- formData.append('file', file, file.name);
- $.ajax({
- type: "post",
- dataType: "json",
- data: formData,
- cache: false,
- processData: false,
- contentType: false,
- url: '{:url("system.files/upimg?act=cms.cate_jhedit_cherry")}',
- success: function(res){
- layer.msg(res.msg);
- if(res.code == 1){
- callback(res.data,{name:file.name,isShadow:true});
- }
- }
- });
- },
- toolbars: {
- // 定义顶部工具栏
- toolbar: ['bold','italic','strikethrough','|','header','list','|',{insert:['image','vado','vido','br','code','table','line-table','bar-table','link','hr']},'togglePreview'],
- // 定义侧边栏,默认为空
- sidebar: [],
- // 定义顶部右侧工具栏,默认为空
- toolbarRight: [],
- // 定义选中文字时弹出的“悬浮工具栏”,默认为 ['bold', 'italic', 'underline', 'strikethrough', 'sub', 'sup', 'quote', '|', 'size', 'color']
- bubble: false,
- // 定义光标出现在行首位置时出现的“提示工具栏”,默认为 ['h1', 'h2', 'h3', '|', 'checklist', 'quote', 'table', 'code']
- float: false,
- },
- });
- </script>
复制代码
|
|