UEditor工具条有两种配置方法:
第一种:直接修改ueditor.config.js文件
在文件ueditor.config.js中,有一项toolbars,这里的每一个字符串都是一个按钮功能,如下红色部分
window.UEDITOR_CONFIG = {
//为编辑器实例添加一个路径,这个不能被注释
UEDITOR_HOME_URL: URL
// 服务器统一请求接口路径
, serverUrl: URL + "net/controller.ashx"
//工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的重新定义
, toolbars: [[
'fullscreen', 'source', '|', 'undo', 'redo', '|',
'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',
'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
'directionalityltr', 'directionalityrtl', 'indent', '|',
'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
'simpleupload', 'insertimage', 'emotion', 'scrawl', 'insertvideo', 'music', 'attachment', 'map', 'gmap', 'insertframe', 'insertcode', 'webapp', 'pagebreak', 'template', 'background', '|',
'horizontal', 'date', 'time', 'spechars', 'snapscreen', 'wordimage', '|',
'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|',
'print', 'preview', 'searchreplace', 'drafts', 'help'
]]
第二层"[]"内的所有按钮在同一行,如果希望主动换行,用[['bt1',bt2],[bt3,bt4]]格式,这样bt1和bt2在第一行,bt3和bt4就在第二行;"|",表示分隔符,它在工具栏中添加一个竖线,将两侧的按钮分隔开。
第二种:在实例化时配置工具栏
在编辑器实例化的时候,可以重新配置工具栏,见下面红色部分,格式与ueditor.config.js文件相同
var ue = UE.getEditor("editor-1", {
toolbars: [['undo','redo','|','bold','italic']],
enableAutoSave: false,
autoHeightEnabled: false,
autoClearinitialContent: true,
initialFrameHeight: 930,
wordCount: false,
elementPathEnabled: false,
initialFrameWidth: 680,
//autoFloatEnabled:false
});