2024年05月17日 织梦 dede 编辑器 替换 百度 方法 织梦 dede 懒猪技术
织梦dede编辑器替换成百度编辑器方法
到官网http://ueditor.baidu.com/website/download.html下载编辑器命名ueditor文件夹上传到include目录下
修改inc_func_funcAdmin.php文件;
打开include下的inc文件夹内的inc_func_funcAdmin.php找到184行,贴入以下代码。
else if($GLOBALS['cfg_html_editor']=='ueditor')
{
$fvalue = $fvalue=='' ? '<p></p>' : $fvalue;
$code = '<script type="text/javascript" charset="utf-8"
src="/include/ueditor/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8"
src="/include/ueditor/ueditor.all.js"></script>
<link rel="stylesheet" type="text/css"
href="/include/ueditor/themes/default/css/ueditor.css"/>
<textarea name="'.$fname.'" id="'.$fname.'"
style="width:100%;">'.$fvalue.'</textarea>
<script type="text/javascript">var ue = new
baidu.editor.ui.Editor();ue.render("'.$fname.'");</script>';
if($gtype=="print")
{
echo $code;
}
else
{
return $code;
}
}
修改配置。请登录织梦后台修改相应的设置;
进入织梦网站后台-->系统-->系统基本参数-->核心设置-->将Html编辑器的值改为 ueditor ,然后保存。至此,编辑器已经整合成功!
本文链接:http://so.lmcjl.com/news/4715/