系統(tǒng)軟件園 - 打造精品軟件下載網(wǎng)站 系統(tǒng)軟件園首頁(yè) | Win7激活工具 | 熱門專題
系統(tǒng)軟件園>您的位置:首頁(yè) > 軟件下載 > 應(yīng)用軟件 > 文字處理 >

Ueditor下載|ueditor編輯器(百度富文本編輯器) V1.4.3.3免費(fèi)版

Ueditor下載|ueditor編輯器(百度富文本編輯器) V1.4.3.3免費(fèi)版
更新時(shí)間:2023-11-15軟件大?。?/span>10.1M軟件格式:.rar
授權(quán)方式:免費(fèi)版軟件語(yǔ)言:簡(jiǎn)體中文軟件類型:國(guó)產(chǎn)軟件

安全檢測(cè):

推薦星級(jí):

分享到:

軟件介紹

Ueditor編輯器是由百度開(kāi)發(fā)的富文本編輯器,兼容所有CMS系統(tǒng),具有輕量,可定制,注重用戶體驗(yàn)等特點(diǎn),開(kāi)源基于BSD協(xié)議,安裝簡(jiǎn)單,允許自由使用和使用代碼等優(yōu)點(diǎn)。

Ueditor編輯器軟件特色

體積小巧,性能優(yōu)良,使用簡(jiǎn)單

分層架構(gòu),方便定制與擴(kuò)展

滿足不同層次用戶需求,更加適合團(tuán)隊(duì)開(kāi)發(fā)

豐富完善的中文文檔

多個(gè)瀏覽器支持:Mozilla, MSIE, FireFox, Maxthon,Safari和Chrome

更好的使用體驗(yàn)

擁有專業(yè)QA團(tuán)隊(duì)持續(xù)支持,已應(yīng)用在百度各大產(chǎn)品線上

Ueditor編輯器怎么安裝?


1、引用JS;

ueditor.config.js
ueditor.all.min.js
lang/zh-cn/zh-cn.js

<script src="__plus__/ueditor/ueditor.config.js"></script>
<script src="__plus__/ueditor/ueditor.all.min.js"></script>
<script src="__plus__/ueditor/lang/zh-cn/zh-cn.js"></script>

2. 編輯器顯示處 id="content"
<textarea id="content" name="content"></textarea>

3.底部
<script type="text/javascript">
    //實(shí)例化編輯器
    //建議使用工廠方法getEditor創(chuàng)建和引用編輯器實(shí)例,如果在某個(gè)閉包下引用該編輯器,直接調(diào)用UE.getEditor('editor')就能拿到相關(guān)的實(shí)例
    UE.getEditor('content',{initialFrameWidth:1500,initialFrameHeight:400,});  
</script>

效果:
Ueditor下載

4.ueditor編輯器按鈕配置方法

定制工具欄圖標(biāo)

UEditor 工具欄上的按鈕列表可以自定義配置,只需要通過(guò)修改配置項(xiàng)就可以實(shí)現(xiàn)需求

配置項(xiàng)修改說(shuō)明

修改配置項(xiàng)的方法:

1.方法一:修改 ueditor.config.js 里面的 toolbars
js方法
<script type="text/javascript">
//實(shí)例化編輯器
//建議使用工廠方法getEditor創(chuàng)建和引用編輯器實(shí)例,如果在某個(gè)閉包下引用該編輯器,直接調(diào)用UE.getEditor(‘editor’)就能拿到相關(guān)的實(shí)例
UE.getEditor(‘content’,{initialFrameWidth:700,initialFrameHeight:400, toolbars: [[‘bold’, ‘italic’, ‘underline’, ‘fontborder’, ‘strikethrough’, ‘superscript’, ‘subscript’,
‘removeformat’, ‘formatmatch’, ‘autotypeset’, ‘blockquote’, ‘pasteplain’, ‘|’, ‘forecolor’, ‘backcolor’, ‘insertorderedlist’, ‘insertunorderedlist’,
‘selectall’, ‘cleardoc’]]});
</script>
>```    
2. 方法二:實(shí)例化編輯器的時(shí)候傳入 toolbars 參數(shù)(寫在script代碼塊里)

>`var ue = UE.getEditor(‘container’);`

簡(jiǎn)單列表-注意toolbars數(shù)組里面只有一個(gè)數(shù)組時(shí),編輯器上只有會(huì)有一行按鈕,沒(méi)有換行

toolbars: [[‘fullscreen’, ‘source’, ‘undo’, ‘redo’, ‘bold’]]
若想有多行列表-toolbars數(shù)組里面要有多個(gè)數(shù)組,每個(gè)數(shù)組占一行

例子:
把下面的代碼放入高度后面:

```html
toolbars: [['fullscreen', 'source', 'undo', 'redo','bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript','removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist','selectall', 'cleardoc']]
<script type="text/javascript">
//實(shí)例化編輯器
//建議使用工廠方法getEditor創(chuàng)建和引用編輯器實(shí)例,如果在某個(gè)閉包下引用該編輯器,直接調(diào)用UE.getEditor('editor')就能拿到相關(guān)的實(shí)例
UE.getEditor('content',{initialFrameWidth:800,initialFrameHeight:400,toolbars: [['fullscreen', 'source', 'undo', 'redo','bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript','removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist','selectall', 'cleardoc']]});
</script>
Ueditor下載|ueditor編輯器(百度富文本編輯器) V1.4.3.3免費(fèi)版下載地址
同類軟件推薦
相關(guān)軟件下載
返回頂部


系統(tǒng)軟件完發(fā)布的系統(tǒng)鏡像及軟件均來(lái)至互聯(lián)網(wǎng),僅供學(xué)習(xí)和研究使用,不得用于任何商業(yè)用途并請(qǐng)?jiān)谙螺d后24小時(shí)內(nèi)刪除,如果滿意請(qǐng)聯(lián)系版權(quán)方購(gòu)買。
如果您發(fā)現(xiàn)本站侵害了您的版權(quán),請(qǐng)立即聯(lián)系我們,本站將第一時(shí)間進(jìn)行相關(guān)處理。郵箱:[見(jiàn)首頁(yè)]
版權(quán)聲明|下載聲明 Copyright @ 2021 系統(tǒng)軟件園