nicEditor使用jquery添加/删除图标

时间:2017-05-26 08:14:40

标签: javascript jquery editor nicedit

我尝试在我的应用程序中添加一个富文本编辑器。我正在使用nicEdit

B

我添加了这部分,将我的普通textarea转换为richtext编辑器。它看起来很好:

enter image description here

我现在要做的只是展示一些图标,例如IU,{{1}}。我不想要所有的图标。我怎么能隐藏那些?我还想在富文本编辑器内容中默认设置字体系列。

我试图搜索这么多链接,但我无法为此问题找到任何正确的解决方案。请帮我解决这个问题。提前谢谢。

1 个答案:

答案 0 :(得分:1)

根据the documentation

您可以在实例化对象时添加所需按钮的数组。

bkLib.onDomLoaded(function() {
  nicEditors.editors.push(
    new nicEditor({buttonList:['bold','italic']}).panelInstance(document.getElementById('single_answer_description')));
});