主頁(yè) > 知識(shí)庫(kù) > PHP如何搭建百度Ueditor富文本編輯器

PHP如何搭建百度Ueditor富文本編輯器

熱門標(biāo)簽:萍鄉(xiāng)商鋪地圖標(biāo)注 桂陽(yáng)公司如何做地圖標(biāo)注 宿州正規(guī)外呼系統(tǒng)軟件 電信外呼系統(tǒng)多少錢一個(gè)月 企業(yè)400電話辦理多少費(fèi)用 合肥企業(yè)外呼系統(tǒng)線路 神龍斗士電話機(jī)器人 代理打電話機(jī)器人 太原400電話申請(qǐng)流程

本文為大家分享了PHP搭建百度Ueditor富文本編輯器的方法,供大家參考,具體內(nèi)容如下

下載UEditor

官網(wǎng):下載地址

將下載好的文件解壓到thinkphp項(xiàng)目中,本文是解壓到PUBLIC目錄下并改文件夾名稱為ueditor

第一步 引入javascript

在html中如入下面的js語(yǔ)句引入相關(guān)文件

script type="text/javascript" charset="utf-8" src="__PUBLIC__/ueditor/ueditor.config.js">/script> 
script type="text/javascript" charset="utf-8" src="__PUBLIC__/ueditor/ueditor.all.js">/script> 

第二步 添加textare文本域并設(shè)置id值

textarea type="text" name="content" id="EditorId" placeholder="請(qǐng)輸入內(nèi)容">/textarea>

第三步 初始化UEditor編輯器

在html代碼中添加下面的代碼初始化UEditor編譯器

script type="text/javascript" charset="utf-8">//初始化編輯器 
   window.UEDITOR_HOME_URL = "__PUBLIC__/ueditor/";//配置路徑設(shè)定為UEditor所放的位置 
   window.onload=function(){ 
    window.UEDITOR_CONFIG.initialFrameHeight=600;//編輯器的高度 
    window.UEDITOR_CONFIG.initialFrameWidth=1200;//編輯器的寬度 
    var editor = new UE.ui.Editor({ 
      imageUrl : '', 
      fileUrl : '', 
      imagePath : '', 
      filePath : '', 
      imageManagerUrl:'', //圖片在線管理的處理地址 
      imageManagerPath:'__ROOT__/' 
    }); 
    editor.render("EditorId");//此處的EditorId與textarea name="content" id="EditorId">的id值對(duì)應(yīng) /textarea> 
  } 
/script> 

第四步 設(shè)置圖片上傳路徑

UEditor編輯器的默認(rèn)圖片上傳路徑是根目錄下/ueditor/php/upload/image/目錄,沒有這個(gè)目錄會(huì)自動(dòng)創(chuàng)建,如果要自定義圖片上傳路徑,可以在ueditor/php/config.json文件中12行處修改。

最后貼上完整的html代碼:

!DOCTYPE html> 
html lang="en"> 
head> 
  meta charset="UTF-8"> 
  title>Document/title> 
  script type="text/javascript" charset="utf-8" src="__PUBLIC__/ueditor/ueditor.config.js">/script> 
script type="text/javascript" charset="utf-8" src="__PUBLIC__/ueditor/ueditor.all.js">/script> 
/head> 
body> 
 
 form action="__URL__/receiver" method="post" accept-charset="utf-8"> 
  textarea type="text" name="content" id="EditorId" placeholder="請(qǐng)輸入內(nèi)容">/textarea> 
  input type="submit" value="提交"> 
 /form> 
   
  script type="text/javascript" charset="utf-8">//初始化編輯器 
  window.UEDITOR_HOME_URL = "__PUBLIC__/ueditor/";//配置路徑設(shè)定為UEditor所放的位置 
  window.onload=function(){ 
    window.UEDITOR_CONFIG.initialFrameHeight=600;//編輯器的高度 
    window.UEDITOR_CONFIG.initialFrameWidth=1200;//編輯器的寬度 
    var editor = new UE.ui.Editor({ 
      imageUrl : '', 
      fileUrl : '', 
      imagePath : '', 
      filePath : '', 
      imageManagerUrl:'', //圖片在線管理的處理地址 
      imageManagerPath:'__ROOT__/' 
    }); 
    editor.render("EditorId");//此處的EditorId與textarea name="content" id="EditorId">的id值對(duì)應(yīng) /textarea> 
  } 
/script> 
/body> 
/html> 

效果圖

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • ThinkPHP中使用Ueditor富文本編輯器
  • ThinkPHP自動(dòng)轉(zhuǎn)義存儲(chǔ)富文本編輯器內(nèi)容導(dǎo)致讀取出錯(cuò)的解決方法

標(biāo)簽:鄂州 白銀 辛集 衡陽(yáng) 綏化 廊坊 太原 崇左

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP如何搭建百度Ueditor富文本編輯器》,本文關(guān)鍵詞  PHP,如何,搭建,百度,Ueditor,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP如何搭建百度Ueditor富文本編輯器》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于PHP如何搭建百度Ueditor富文本編輯器的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章