UEditor 自定义 工具条
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UEditor 自定义 工具条相关的知识,希望对你有一定的参考价值。
<script> $(function() { //本来是这样的:UE.getEditor(‘editor‘); 传入参数后就是下面那样子了,toolbars里的就是工具的图标 UE.getEditor(‘editor‘, { toolbar: [ [‘fullscreen‘, ‘source‘, ‘undo‘, ‘redo‘, ‘bold‘, ‘italic‘, ‘underline‘,‘fontborder‘, ‘backcolor‘, ‘fontsize‘, ‘fontfamily‘, ‘justifyleft‘, ‘justifyright‘,‘justifycenter‘, ‘justifyjustify‘, ‘strikethrough‘,‘superscript‘, ‘subscript‘, ‘removeformat‘, ‘formatmatch‘,‘autotypeset‘, ‘blockquote‘, ‘pasteplain‘, ‘|‘, ‘forecolor‘, ‘backcolor‘,‘insertorderedlist‘, ‘insertunorderedlist‘, ‘selectall‘, ‘cleardoc‘, ‘link‘, ‘unlink‘,‘emotion‘, ‘help‘] ] }); }) </script> 我配置的时候配置key使用的是toolbar,很多博文使用的是toolbars,但是我使用toolbars不起作用,不知道是不是ueditor的版本问题。
以上是关于UEditor 自定义 工具条的主要内容,如果未能解决你的问题,请参考以下文章