第一步:下載相對應編輯器的版本javascript
首先,去百度搜索「百度ueditor編輯器」,而後點擊進入官網,找到下載頁面。找到咱們想要的編輯器的版本,這點相信不要我多說了。下載下來,而後修更名稱爲「ueditor」,並進行打包上傳到include目錄下。php
舒適提示:在安裝前,最好備份下所要修改的文件。css
第二步:修改inc_func_funcAdmin.php文件html
打開include下的inc文件夾內的inc_func_funcAdmin.php找到184行,貼入如下代碼。java
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 ,而後保存。 到了這一步,那麼恭喜你,文本編輯器已經替換成功!ui
如圖所示:spa