ckeditor 图片上传功能配置

Posted 江户川丶柯南

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ckeditor 图片上传功能配置相关的知识,希望对你有一定的参考价值。

1. /ckeditor/plugins/image/dialogs/image.js

  搜索 upload 把 hidden:!0 改为 hidden:0

2. config.js 新增配置项

config.image_previewText=‘ ‘; //预览区域显示内容
config.filebrowserUploadUrl="/ckeditor/upload";  //图片上传地址

3. 图片上传 接口 预览图片功能实现

$fn = isset($_GET[‘CKEditorFuncNum‘]) ? intval($_GET[‘CKEditorFuncNum‘]) : 0;
$img = ‘图片地址‘;
echo ‘<script type="text/javascript">window.parent.CKEDITOR.tools.callFunction(‘.$fn.‘,"‘.$img.‘", "")</script>‘;

 

以上是关于ckeditor 图片上传功能配置的主要内容,如果未能解决你的问题,请参考以下文章

CKEditor上传图片—配置CKFinder

drupal中安装CKEditor文本编辑器,并配置图片上传功能 之 方法二

ckeditor 如何在asp中配置上传图片

ckeditor4.7配置图片上传

drupal7中CKEditor开启上传图片功能

CKEditor + CKFinder (上传图片出现问题)